From 693184e68e296fa832e414f2d49befcd35a63689 Mon Sep 17 00:00:00 2001 From: Nils Walther Date: Thu, 8 Jan 2026 19:51:48 +0100 Subject: [PATCH] helix theme update --- home/helix.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/home/helix.nix b/home/helix.nix index a5b4206..8e80272 100644 --- a/home/helix.nix +++ b/home/helix.nix @@ -22,9 +22,12 @@ }; themes = { transparent = { - inherits = "base16_transparent"; + inherits = "tokyonight_moon"; "ui.background" = { }; + "ui.statusline" = { fg = "fg"; }; + "ui.statusline.inactive" = { fg = "comment"; }; + "ui.linenr" = { fg = "#666666"; }; "ui.linenr.selected" = { fg = "#ffffff"; @@ -42,6 +45,14 @@ bg = "#b4befe"; fg = "#11111b"; }; + + "ui.menu" = { fg = "fg"; }; + + "ui.menu.selected" = { fg = "info"; bg = "surface"; modifiers = ["bold"]; }; + + "ui.popup" = { fg = "fg"; }; + + "ui.popup.info" = { fg = "fg"; }; }; }; };