Switch alacritty color scheme to blue for more readable blue color
This commit is contained in:
parent
5891c3e4de
commit
7a54252172
2 changed files with 30 additions and 22 deletions
|
@ -1,23 +1,31 @@
|
||||||
[primary]
|
[colors.primary]
|
||||||
background = "0x1e1e1e"
|
background = "0x0d1117"
|
||||||
foreground = "0xffffff"
|
foreground = "0xb3b1ad"
|
||||||
|
|
||||||
[normal]
|
[colors.normal]
|
||||||
black = "0x171421"
|
black = "0x484f58"
|
||||||
red = "0xc01c28"
|
red = "0xff7b72"
|
||||||
green = "0x26a269"
|
green = "0x3fb950"
|
||||||
yellow = "0xa2734c"
|
yellow = "0xd29922"
|
||||||
blue = "0x12488b"
|
blue = "0x58a6ff"
|
||||||
magenta = "0xa347ba"
|
magenta = "0xbc8cff"
|
||||||
cyan = "0x2aa1b3"
|
cyan = "0x39c5cf"
|
||||||
white = "0xd0cfcc"
|
white = "0xb1bac4"
|
||||||
|
|
||||||
[bright]
|
[colors.bright]
|
||||||
black = "0x535c64"
|
black = "0x6e7681"
|
||||||
red = "0xf66151"
|
red = "0xffa198"
|
||||||
green = "0x33d17a"
|
green = "0x56d364"
|
||||||
yellow = "0xe9ad0c"
|
yellow = "0xe3b341"
|
||||||
blue = "0x2a7bde"
|
blue = "0x79c0ff"
|
||||||
magenta = "0xc061cb"
|
magenta = "0xd2a8ff"
|
||||||
cyan = "0x33c7de"
|
cyan = "0x56d4dd"
|
||||||
white = "0xffffff"
|
white = "0xf0f6fc"
|
||||||
|
|
||||||
|
[[colors.indexed_colors]]
|
||||||
|
index = 16
|
||||||
|
color = "0xd18616"
|
||||||
|
|
||||||
|
[[colors.indexed_colors]]
|
||||||
|
index = 17
|
||||||
|
color = "0xffa198"
|
||||||
|
|
|
@ -41,7 +41,7 @@ in
|
||||||
};
|
};
|
||||||
shell.program = "tmux";
|
shell.program = "tmux";
|
||||||
window.decorations = "none";
|
window.decorations = "none";
|
||||||
colors = lib.trivial.importTOML ./colors.toml;
|
colors = (lib.trivial.importTOML ./colors.toml).colors;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue