Change accent colour to cyan

This commit is contained in:
Evie Litherland-Smith 2024-12-05 09:03:59 +00:00
parent f2b7176cb9
commit f726834e7f
6 changed files with 10 additions and 10 deletions

View file

@ -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;

View file

@ -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)";
};
};
}

View file

@ -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";
};
};
}

View file

@ -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;

View file

@ -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
};
}

View file

@ -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};