diff options
author | sefidel <contact@sefidel.net> | 2023-07-30 19:19:53 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-07-30 19:19:53 +0900 |
commit | 22d6cdc1529b90e8ff1b419fc6ce74927c12928d (patch) | |
tree | 6acaa39974bed22f3eff7b3aeed22a3ba4139046 /home/profiles/base/default.nix | |
parent | 38811e26cf3705eee9a2ed8d1ee537f6d0322dff (diff) | |
download | nixrc-22d6cdc1529b90e8ff1b419fc6ce74927c12928d.tar.gz nixrc-22d6cdc1529b90e8ff1b419fc6ce74927c12928d.zip |
feat(home/base): helix: set ext colours to 1/2 step of the original colour
* prevents comments from being invisible on normal cursor
Diffstat (limited to 'home/profiles/base/default.nix')
-rw-r--r-- | home/profiles/base/default.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/home/profiles/base/default.nix b/home/profiles/base/default.nix index 8907e71..7e1ebc6 100644 --- a/home/profiles/base/default.nix +++ b/home/profiles/base/default.nix @@ -109,9 +109,14 @@ in # Bar cursor "ui.virtual" = { fg = "white"; }; # lightened ui.cursor.{normal,insert,select} - "ui.cursor.primary.normal" = { bg = "gray05"; }; + "ui.cursor.primary.normal" = { bg = "gray045"; }; "ui.cursor.primary.insert" = { bg = "white"; }; - "ui.cursor.primary.select" = { bg = "gray06"; }; + "ui.cursor.primary.select" = { bg = "gray035"; }; + + palette = { + gray035 = "#4b4b49"; + gray045 = "#525250"; + }; }; }; }; |