summaryrefslogtreecommitdiff
path: root/themes/tricolors.nix
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-06-27 11:12:06 -0400
committerFreya Murphy <freya@freyacat.org>2025-06-27 11:12:06 -0400
commit80d32cb32a631e495d3a19d714a9acfd5aec9833 (patch)
treeebad46c5cb14559edda63d82702ffbd35e744d6f /themes/tricolors.nix
parentadd alacritty (diff)
downloaddotfiles-nix-80d32cb32a631e495d3a19d714a9acfd5aec9833.tar.gz
dotfiles-nix-80d32cb32a631e495d3a19d714a9acfd5aec9833.tar.bz2
dotfiles-nix-80d32cb32a631e495d3a19d714a9acfd5aec9833.zip
update colorschemes
Diffstat (limited to 'themes/tricolors.nix')
-rw-r--r--themes/tricolors.nix16
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;
};
}