diff --git a/system/desktop.nix b/system/desktop.nix index 217ba546..dbc6d703 100644 --- a/system/desktop.nix +++ b/system/desktop.nix @@ -146,13 +146,13 @@ enable = true; gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc"; iconTheme = { - package = (pkgs.papirus-icon-theme.override { color = "magenta"; }); + package = (pkgs.papirus-icon-theme.override { color = "cyan"; }); name = if config.lib.stylix.scheme.variant == "light" then "Papirus-Light" else "Papirus-Dark"; }; }; stylix.targets.gtk.extraCss = with config.lib.stylix.scheme.withHashtag; '' - @define-color accent_color ${base0E-hex}; - @define-color accent_bg_color ${base0E-hex}; + @define-color accent_color ${base0C-hex}; + @define-color accent_bg_color ${base0C-hex}; ''; xdg = { mime.enable = true; diff --git a/system/home/avizo.nix b/system/home/avizo.nix index dc964f8f..d5299bea 100644 --- a/system/home/avizo.nix +++ b/system/home/avizo.nix @@ -8,7 +8,7 @@ let scheme = config.lib.stylix.scheme; in - lib.mkForce "rgba(${scheme.base0E-rgb-r}, ${scheme.base0E-rgb-g}, ${scheme.base0E-rgb-b}, 1.0)"; + lib.mkForce "rgba(${scheme.base0C-rgb-r}, ${scheme.base0C-rgb-g}, ${scheme.base0C-rgb-b}, 1.0)"; }; }; } diff --git a/system/home/fuzzel.nix b/system/home/fuzzel.nix index c643e55f..f057a8ba 100644 --- a/system/home/fuzzel.nix +++ b/system/home/fuzzel.nix @@ -19,7 +19,7 @@ width = 1; radius = 5; }; - colors.border = lib.mkForce "${config.lib.stylix.scheme.base0E}ff"; + colors.border = lib.mkForce "${config.lib.stylix.scheme.base0C}ff"; }; }; } diff --git a/system/home/hyprland.nix b/system/home/hyprland.nix index 2e0c400c..d2427341 100644 --- a/system/home/hyprland.nix +++ b/system/home/hyprland.nix @@ -59,7 +59,7 @@ let font = config.stylix.fonts.sansSerif.name; scheme = config.lib.stylix.scheme; - accent = scheme.base0E; + accent = scheme.base0C; in { enable = true; @@ -154,7 +154,7 @@ layout = "master"; gaps_in = 2.5; gaps_out = 5; - "col.active_border" = lib.mkForce "rgb(${config.lib.stylix.scheme.magenta})"; + "col.active_border" = lib.mkForce "rgb(${config.lib.stylix.scheme.base0C})"; }; master = { allow_small_split = true; diff --git a/system/home/mako.nix b/system/home/mako.nix index 7caa0978..8c2677ff 100644 --- a/system/home/mako.nix +++ b/system/home/mako.nix @@ -12,7 +12,7 @@ iconPath = with config.gtk.iconTheme; "${package}/share/icons/${name}"; borderRadius = 5; borderSize = 1; - borderColor = lib.mkForce config.lib.stylix.scheme.withHashtag.base0E; + borderColor = lib.mkForce config.lib.stylix.scheme.withHashtag.base0C; defaultTimeout = (builtins.mul 5 1000); # 5s timeout }; } diff --git a/system/home/waybar.nix b/system/home/waybar.nix index f5d612c4..075464ba 100644 --- a/system/home/waybar.nix +++ b/system/home/waybar.nix @@ -317,7 +317,7 @@ tooltip { background: ${scheme.base00}; - border: 1px solid ${scheme.base0E}; + border: 1px solid ${scheme.base0C}; border-radius: 5px; box-shadow: none; } @@ -365,7 +365,7 @@ color: ${scheme.base03}; } #workspaces button.active { - color: ${scheme.base0E}; + color: ${scheme.base0C}; } #workspaces button.urgent { color: ${scheme.base09};