diff options
author | sefidel <contact@sefidel.net> | 2023-08-01 21:49:31 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-08-01 22:17:14 +0900 |
commit | 32ccbc1779e13bec63e75d998f8dc7947fda550c (patch) | |
tree | 68da5d9eec5cae554ac51a8a28af4931c6d413b1 | |
parent | 09ad024f7198a37b95912c2947d6e34f303bbd45 (diff) | |
download | nixrc-32ccbc1779e13bec63e75d998f8dc7947fda550c.tar.gz nixrc-32ccbc1779e13bec63e75d998f8dc7947fda550c.zip |
feat(home/base): helix: highlight selection with accent
-rw-r--r-- | home/profiles/base/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/home/profiles/base/default.nix b/home/profiles/base/default.nix index 80457f9..d2af5f6 100644 --- a/home/profiles/base/default.nix +++ b/home/profiles/base/default.nix @@ -124,10 +124,15 @@ in "ui.cursor.primary.normal" = { bg = "gray045"; }; "ui.cursor.primary.insert" = { bg = "white"; }; "ui.cursor.primary.select" = { bg = "gray035"; }; + # pink-highlighted search + "ui.selection" = { fg = "accent01"; bg = "accent02"; }; + "ui.selection.primary" = { fg = "accent01"; bg = "accent02"; }; palette = { gray035 = "#4b4b49"; gray045 = "#525250"; + accent01 = "#f0a0c0"; + accent02 = "#302028"; }; }; }; |