From a5fd0bf59700369473fd4b7b4b66a95a0bd79751 Mon Sep 17 00:00:00 2001 From: Sean Kovacs Date: Sun, 8 Feb 2026 21:32:44 -0500 Subject: [PATCH] fix accents --- home/apps/librewolf.nix | 2 +- home/apps/mpv.nix | 2 +- home/apps/vencord.nix | 2 +- home/services/gtk.nix | 2 +- home/services/qt.nix | 2 +- home/terminal/neovim.nix | 2 +- home/tiling/default.nix | 6 +++--- home/tiling/niri.nix | 4 ++-- home/tiling/noctalia.nix | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/home/apps/librewolf.nix b/home/apps/librewolf.nix index 096b627..7f549ff 100644 --- a/home/apps/librewolf.nix +++ b/home/apps/librewolf.nix @@ -15,7 +15,7 @@ home.file.".librewolf/default/chrome/colors.css" = with config.scheme.withHashtag; { text = '' * { - --accent: ${base09}; + --accent: ${config.scheme.withHashtag.${config.colors.accent}}; --rosewater: ${base06}; --flamingo: ${base0F}; --pink: ${base17}; diff --git a/home/apps/mpv.nix b/home/apps/mpv.nix index 2151e03..a881441 100644 --- a/home/apps/mpv.nix +++ b/home/apps/mpv.nix @@ -33,7 +33,7 @@ with config.scheme; lib.concatStringsSep "," ( lib.mapAttrsToList (key: value: "${key}=${value}") { - foreground = base09; + foreground = config.scheme.withHashtag.${config.colors.accent}; foreground_text = base01; background = base00; background_text = base05; diff --git a/home/apps/vencord.nix b/home/apps/vencord.nix index 80f5984..39f7123 100644 --- a/home/apps/vencord.nix +++ b/home/apps/vencord.nix @@ -4,7 +4,7 @@ useQuickCss = true; themeLinks = [ ]; eagerPatches = false; - enabledThemes = [ "catppuccin-mocha-peach.theme.css" ]; + enabledThemes = [ "base16.css" ]; enableReactDevtools = false; frameless = false; transparent = true; diff --git a/home/services/gtk.nix b/home/services/gtk.nix index f851508..d0b6422 100644 --- a/home/services/gtk.nix +++ b/home/services/gtk.nix @@ -110,7 +110,7 @@ let } /* Accent */ - ${mkColorSection "accent_bg_color" base09} + ${mkColorSection "accent_bg_color" config.scheme.withHashtag.${config.colors.accent}} @define-color accent_fg_color @window_bg_color; ''; in diff --git a/home/services/qt.nix b/home/services/qt.nix index 0740046..8671894 100644 --- a/home/services/qt.nix +++ b/home/services/qt.nix @@ -36,7 +36,7 @@ ColorScheme = with config.scheme; let - accent = base09; + accent = config.scheme.withHashtag.${config.colors.accent}; mkColors = roles: builtins.concatStringsSep ", " (map (r: "#ff${r}") roles); in { diff --git a/home/terminal/neovim.nix b/home/terminal/neovim.nix index ecb8a02..e1fb124 100644 --- a/home/terminal/neovim.nix +++ b/home/terminal/neovim.nix @@ -59,7 +59,7 @@ }; accent.base16_custom = { - accent0 = base09; # integers/constants + accent0 = config.scheme.withHashtag.${config.colors.accent}; # integers/constants accent1 = base0A; # classes/search accent2 = base0B; # strings/inherited accent3 = base0C; # support/regex diff --git a/home/tiling/default.nix b/home/tiling/default.nix index 20f40c4..52ff645 100644 --- a/home/tiling/default.nix +++ b/home/tiling/default.nix @@ -36,11 +36,11 @@ prompt = base04 + "ff"; placeholder = base04 + "ff"; input = base05 + "ff"; - match = base09 + "ff"; + match = config.scheme.withHashtag.${config.colors.accent} + "ff"; selection = base04 + "ff"; - selection-text = base05 + "ff"; + selection-text = base00 + "ff"; counter = base04 + "ff"; - border = base09 + "ff"; + border = config.scheme.withHashtag.${config.colors.accent} + "ff"; }; }; }; diff --git a/home/tiling/niri.nix b/home/tiling/niri.nix index 6db8d1d..c8e196d 100644 --- a/home/tiling/niri.nix +++ b/home/tiling/niri.nix @@ -103,14 +103,14 @@ border = { enable = true; width = 2; - active.color = base09; + active.color = config.scheme.withHashtag.${config.colors.accent}; inactive.color = base01; urgent.color = base12; }; focus-ring = { enable = false; width = 2; - active.color = base09; + active.color = config.scheme.withHashtag.${config.colors.accent}; inactive.color = base01; urgent.color = base12; }; diff --git a/home/tiling/noctalia.nix b/home/tiling/noctalia.nix index cc00a0b..3dd0c1f 100644 --- a/home/tiling/noctalia.nix +++ b/home/tiling/noctalia.nix @@ -7,7 +7,7 @@ programs.noctalia-shell = { enable = true; colors = with config.scheme.withHashtag; { - mPrimary = base09; + mPrimary = config.scheme.withHashtag.${config.colors.accent}; mOnPrimary = base00; mSecondary = base13; mOnSecondary = base00;