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 = {
|
||||
enable = true;
|
||||
settings = {
|
||||
colors = with config.lib.stylix.colors.withHashtag; {
|
||||
normal.yellow = lib.mkForce orange;
|
||||
bright.yellow = lib.mkForce bright-orange;
|
||||
};
|
||||
window = {
|
||||
dynamic_title = true;
|
||||
padding = {
|
||||
|
|
Loading…
Reference in a new issue