From 11780517948f214b9f93d1bf5a2d29bc181d3a33 Mon Sep 17 00:00:00 2001 From: awwpotato <153149335+awwpotato@users.noreply.github.com> Date: Tue, 4 Mar 2025 10:14:47 -0800 Subject: [PATCH] ncspot: match style guide better and add transparent bg (#938) Link: https://github.com/danth/stylix/pull/938 Reviewed-by: Flameopathic <64027365+Flameopathic@users.noreply.github.com> Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> --- modules/ncspot/hm.nix | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/modules/ncspot/hm.nix b/modules/ncspot/hm.nix index 592dc2fe..0a8cd319 100644 --- a/modules/ncspot/hm.nix +++ b/modules/ncspot/hm.nix @@ -13,22 +13,24 @@ in { theme = with colors; { - background = base00; + background = + if (config.stylix.opacity.terminal != 1.0) then "#00000000" else base00; primary = base05; - secondary = base03; + secondary = base04; title = base06; - playing = base05; - playing_selected = base06; - playing_bg = base02; + playing = base0B; + playing_selected = base0B; + playing_bg = + if (config.stylix.opacity.terminal != 1.0) then "#00000000" else base00; highlight = base05; highlight_bg = base02; - error = base07; - error_bg = base0F; + error = base05; + error_bg = base08; statusbar = base00; statusbar_progress = base04; statusbar_bg = base04; - cmdline = base05; - cmdline_bg = base00; + cmdline = base02; + cmdline_bg = base05; search_match = base05; }; };