Change accentColour, add accentColour2 for certain programs (e.g. sway)
This commit is contained in:
parent
fda20dbf29
commit
1f04b00dfd
|
@ -35,7 +35,8 @@
|
|||
...
|
||||
}: rec {
|
||||
inherit hostname;
|
||||
accentColour = "magenta";
|
||||
accentColour = "blue";
|
||||
accentColour2 = "cyan";
|
||||
iosevkaCustom = {
|
||||
packages = iosevka-custom.outputs.packages.${system};
|
||||
names = iosevka-custom.outputs.names;
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
pkgs,
|
||||
fonts,
|
||||
accentColour,
|
||||
accentColour2,
|
||||
...
|
||||
}: {
|
||||
wayland.windowManager.sway = {
|
||||
|
@ -47,7 +48,7 @@
|
|||
};
|
||||
colors = with config.scheme.withHashtag; let
|
||||
text = toString base05;
|
||||
indicator = toString cyan;
|
||||
indicator = toString config.scheme.withHashtag.${accentColour2};
|
||||
background = toString base00;
|
||||
in {
|
||||
inherit background;
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
pkgs,
|
||||
fonts,
|
||||
accentColour,
|
||||
accentColour2,
|
||||
...
|
||||
}: {
|
||||
home.packages = [pkgs.nyxt];
|
||||
|
@ -23,7 +24,7 @@
|
|||
:on-primary-color "${base01}"
|
||||
:secondary-color "${base03}"
|
||||
:on-secondary-color "${base05}"
|
||||
:accent-color "${cyan}"
|
||||
:accent-color "${config.scheme.withHashtag.${accentColour2}}"
|
||||
:on-accent-color "${base01}"
|
||||
:action-color "${cyan}"
|
||||
:on-action-color "${base01}"
|
||||
|
|
Reference in a new issue