From 044ac0cc6d914f1dac22a728013bc3797f77cfab Mon Sep 17 00:00:00 2001 From: Assil Ksiksi Date: Sat, 7 Feb 2026 17:56:36 -0500 Subject: [PATCH] noctalia-shell/hm: replace foreground grays with accent colors (#2189) Replace the foreground grays with accent colors to improve theme vibrancy. Link: https://github.com/nix-community/stylix/discussions/2187 Link: https://github.com/nix-community/stylix/pull/2189 Reviewed-by: Alexander <63157919+rwxae@users.noreply.github.com> Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> --- modules/noctalia-shell/hm.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/noctalia-shell/hm.nix b/modules/noctalia-shell/hm.nix index 006cfe6c..afce6aab 100644 --- a/modules/noctalia-shell/hm.nix +++ b/modules/noctalia-shell/hm.nix @@ -11,21 +11,21 @@ mkTarget { { programs.noctalia-shell = { colors = with colors.withHashtag; { - mPrimary = base05; + mPrimary = base0D; mOnPrimary = base00; - mSecondary = base05; + mSecondary = base0E; mOnSecondary = base00; - mTertiary = base04; + mTertiary = base0C; mOnTertiary = base00; mError = base08; mOnError = base00; mSurface = base00; mOnSurface = base05; - mHover = base04; + mHover = base0C; mOnHover = base00; mSurfaceVariant = base01; mOnSurfaceVariant = base04; - mOutline = base02; + mOutline = base03; mShadow = base00; }; };