Force alacritty to use orange and bright orange for yellow and bright yellow respectively
base24 yellow doesn't have a "bright" variant, so switch to orange in alacritty to keep a difference
This commit is contained in:
parent
e2b4ab7418
commit
5ee1fe13f6
|
@ -1,8 +1,12 @@
|
||||||
{ ... }:
|
{ config, lib, ... }:
|
||||||
{
|
{
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
colors = with config.lib.stylix.colors.withHashtag; {
|
||||||
|
normal.yellow = lib.mkForce orange;
|
||||||
|
bright.yellow = lib.mkForce bright-orange;
|
||||||
|
};
|
||||||
window = {
|
window = {
|
||||||
dynamic_title = true;
|
dynamic_title = true;
|
||||||
padding = {
|
padding = {
|
||||||
|
|
Loading…
Reference in a new issue