From 22d6cdc1529b90e8ff1b419fc6ce74927c12928d Mon Sep 17 00:00:00 2001
From: sefidel <contact@sefidel.net>
Date: Sun, 30 Jul 2023 19:19:53 +0900
Subject: feat(home/base): helix: set ext colours to 1/2 step of the original
 colour

* prevents comments from being invisible on normal cursor
---
 home/profiles/base/default.nix | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

(limited to 'home/profiles/base')

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";
+            };
           };
         };
       };
-- 
cgit 1.4.1