1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +00:00

Fix theme

This commit is contained in:
RGBCube 2023-11-08 13:44:28 +03:00
parent 6d519d2392
commit 18d543a212
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ homeConfiguration "nixos" {
background = theme.background + theme.transparency;
text = theme.foreground + theme.transparency;
match = theme.activeHighlight + theme.transparency;
selection = theme.text + theme.transparency;
selection = theme.foreground + theme.transparency;
selection-text = theme.background + theme.transparency;
border = theme.activeHighlight + theme.transparency;
};

View file

@ -2,7 +2,7 @@
transparency = "FF"; # OPAQUE
background = "1D2021";
text = "DDC7A1";
foreground = "DDC7A1";
activeHighlight = "D79921";
inactiveHighlight = "928374";