From 21d66d2be1c317bccc0d5e8ef26da0e590c1d9cc Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Wed, 30 Jul 2025 15:53:44 -0400 Subject: [PATCH] adjust helix colors for the cursor theme make it easier to see the matching parentheses and determine whether you are on the primary or matching side. also make the cursor more white and less yellow in general. --- .../home-manager/modules/nmasur/presets/programs/helix.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platforms/home-manager/modules/nmasur/presets/programs/helix.nix b/platforms/home-manager/modules/nmasur/presets/programs/helix.nix index 8a6b21d..79fd9a1 100644 --- a/platforms/home-manager/modules/nmasur/presets/programs/helix.nix +++ b/platforms/home-manager/modules/nmasur/presets/programs/helix.nix @@ -351,7 +351,7 @@ in bg = config.theme.colors.base00; }; "ui.cursor" = { - fg = config.theme.colors.base0A; + fg = config.theme.colors.base04; modifiers = [ "reversed" ]; }; "ui.cursor.insert" = { @@ -363,11 +363,11 @@ in bg = config.theme.colors.base01; }; "ui.cursor.match" = { - fg = config.theme.colors.base0A; + fg = config.theme.colors.base03; modifiers = [ "reversed" ]; }; "ui.cursor.select" = { - fg = config.theme.colors.base0A; + fg = config.theme.colors.base04; modifiers = [ "reversed" ]; }; "ui.gutter" = {