diff options
Diffstat (limited to 'themes/tricolors.nix')
-rw-r--r-- | themes/tricolors.nix | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/themes/tricolors.nix b/themes/tricolors.nix index 286994e..4f8f551 100644 --- a/themes/tricolors.nix +++ b/themes/tricolors.nix @@ -2,14 +2,12 @@ rec { name = "tricolors"; author = "https://trimill.xyz"; - fg = bright.white; - bg = normal.black; + text = bright.white; + subtext = normal.white; - surface.fg = fg; - surface.bg = "2c2b3b"; - - hover.fg = fg; - hover.bg = bright.black; + base = normal.black; + surface = "2c2b3b"; + overlay = bright.black; primary = bright.blue; success = bright.green; @@ -25,6 +23,8 @@ rec { red = "a63a3a"; white = "ada0a8"; yellow = "de7e54"; + pink = normal.magenta; + orange = normal.yellow; }; bright = { @@ -36,5 +36,7 @@ rec { red = "cc5c5c"; white = "c7c6c3"; yellow = "f0c767"; + pink = bright.magenta; + orange = bright.yellow; }; } |