diff options
Diffstat (limited to 'nix/themes/tricolors.nix')
-rw-r--r-- | nix/themes/tricolors.nix | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/nix/themes/tricolors.nix b/nix/themes/tricolors.nix new file mode 100644 index 0000000..d136fb4 --- /dev/null +++ b/nix/themes/tricolors.nix @@ -0,0 +1,40 @@ +rec { + name = "tricolors"; + author = "https://trimill.xyz"; + + fg = bright.white; + bg = normal.black; + + surface.fg = fg; + surface.bg = "2c2b3b"; + + hover.fg = fg; + hover.bg = bright.black; + + primary = bright.blue; + success = bright.green; + warning = bright.yellow; + error = bright.red; + + normal = { + black = "14171d"; + blue = "3d67a2"; + cyan = "578c7c"; + green = "759438"; + magenta = "7b5687"; + red = "a63a3a"; + white = "ada0a8"; + yellow = "de7e54"; + }; + + bright = { + black = "4d4754"; + blue = "789ebf"; + cyan = "82bfb3"; + green = "97bd5e"; + magenta = "a97fb3"; + red = "cc5c5c"; + white = "c7c6c3"; + yellow = "f0c767"; + }; +} |