fix accents
This commit is contained in:
parent
94c1f574cb
commit
a5fd0bf597
9 changed files with 12 additions and 12 deletions
|
|
@ -15,7 +15,7 @@
|
||||||
home.file.".librewolf/default/chrome/colors.css" = with config.scheme.withHashtag; {
|
home.file.".librewolf/default/chrome/colors.css" = with config.scheme.withHashtag; {
|
||||||
text = ''
|
text = ''
|
||||||
* {
|
* {
|
||||||
--accent: ${base09};
|
--accent: ${config.scheme.withHashtag.${config.colors.accent}};
|
||||||
--rosewater: ${base06};
|
--rosewater: ${base06};
|
||||||
--flamingo: ${base0F};
|
--flamingo: ${base0F};
|
||||||
--pink: ${base17};
|
--pink: ${base17};
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
with config.scheme;
|
with config.scheme;
|
||||||
lib.concatStringsSep "," (
|
lib.concatStringsSep "," (
|
||||||
lib.mapAttrsToList (key: value: "${key}=${value}") {
|
lib.mapAttrsToList (key: value: "${key}=${value}") {
|
||||||
foreground = base09;
|
foreground = config.scheme.withHashtag.${config.colors.accent};
|
||||||
foreground_text = base01;
|
foreground_text = base01;
|
||||||
background = base00;
|
background = base00;
|
||||||
background_text = base05;
|
background_text = base05;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
useQuickCss = true;
|
useQuickCss = true;
|
||||||
themeLinks = [ ];
|
themeLinks = [ ];
|
||||||
eagerPatches = false;
|
eagerPatches = false;
|
||||||
enabledThemes = [ "catppuccin-mocha-peach.theme.css" ];
|
enabledThemes = [ "base16.css" ];
|
||||||
enableReactDevtools = false;
|
enableReactDevtools = false;
|
||||||
frameless = false;
|
frameless = false;
|
||||||
transparent = true;
|
transparent = true;
|
||||||
|
|
|
||||||
|
|
@ -110,7 +110,7 @@ let
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Accent */
|
/* Accent */
|
||||||
${mkColorSection "accent_bg_color" base09}
|
${mkColorSection "accent_bg_color" config.scheme.withHashtag.${config.colors.accent}}
|
||||||
@define-color accent_fg_color @window_bg_color;
|
@define-color accent_fg_color @window_bg_color;
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
ColorScheme =
|
ColorScheme =
|
||||||
with config.scheme;
|
with config.scheme;
|
||||||
let
|
let
|
||||||
accent = base09;
|
accent = config.scheme.withHashtag.${config.colors.accent};
|
||||||
mkColors = roles: builtins.concatStringsSep ", " (map (r: "#ff${r}") roles);
|
mkColors = roles: builtins.concatStringsSep ", " (map (r: "#ff${r}") roles);
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
accent.base16_custom = {
|
accent.base16_custom = {
|
||||||
accent0 = base09; # integers/constants
|
accent0 = config.scheme.withHashtag.${config.colors.accent}; # integers/constants
|
||||||
accent1 = base0A; # classes/search
|
accent1 = base0A; # classes/search
|
||||||
accent2 = base0B; # strings/inherited
|
accent2 = base0B; # strings/inherited
|
||||||
accent3 = base0C; # support/regex
|
accent3 = base0C; # support/regex
|
||||||
|
|
|
||||||
|
|
@ -36,11 +36,11 @@
|
||||||
prompt = base04 + "ff";
|
prompt = base04 + "ff";
|
||||||
placeholder = base04 + "ff";
|
placeholder = base04 + "ff";
|
||||||
input = base05 + "ff";
|
input = base05 + "ff";
|
||||||
match = base09 + "ff";
|
match = config.scheme.withHashtag.${config.colors.accent} + "ff";
|
||||||
selection = base04 + "ff";
|
selection = base04 + "ff";
|
||||||
selection-text = base05 + "ff";
|
selection-text = base00 + "ff";
|
||||||
counter = base04 + "ff";
|
counter = base04 + "ff";
|
||||||
border = base09 + "ff";
|
border = config.scheme.withHashtag.${config.colors.accent} + "ff";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -103,14 +103,14 @@
|
||||||
border = {
|
border = {
|
||||||
enable = true;
|
enable = true;
|
||||||
width = 2;
|
width = 2;
|
||||||
active.color = base09;
|
active.color = config.scheme.withHashtag.${config.colors.accent};
|
||||||
inactive.color = base01;
|
inactive.color = base01;
|
||||||
urgent.color = base12;
|
urgent.color = base12;
|
||||||
};
|
};
|
||||||
focus-ring = {
|
focus-ring = {
|
||||||
enable = false;
|
enable = false;
|
||||||
width = 2;
|
width = 2;
|
||||||
active.color = base09;
|
active.color = config.scheme.withHashtag.${config.colors.accent};
|
||||||
inactive.color = base01;
|
inactive.color = base01;
|
||||||
urgent.color = base12;
|
urgent.color = base12;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
programs.noctalia-shell = {
|
programs.noctalia-shell = {
|
||||||
enable = true;
|
enable = true;
|
||||||
colors = with config.scheme.withHashtag; {
|
colors = with config.scheme.withHashtag; {
|
||||||
mPrimary = base09;
|
mPrimary = config.scheme.withHashtag.${config.colors.accent};
|
||||||
mOnPrimary = base00;
|
mOnPrimary = base00;
|
||||||
mSecondary = base13;
|
mSecondary = base13;
|
||||||
mOnSecondary = base00;
|
mOnSecondary = base00;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue