fix(nix-colors): config.colorscheme.colors -> config.colorscheme.palette

This commit is contained in:
ooks-io 2024-05-19 17:12:40 +12:00
parent 58447dcf84
commit 5f3c9de7e7
21 changed files with 282 additions and 282 deletions

View file

@ -3,7 +3,7 @@
let
cfg = config.homeModules.desktop.browser.schizofox;
fonts = config.homeModules.theme.fonts;
inherit (config.colorscheme) colors;
inherit (config.colorscheme) palette;
in
{
@ -16,9 +16,9 @@ in
theme = {
font = "${fonts.regular.family}";
colors = {
background-darker = "${colors.base00}";
background = "${colors.base01}";
foreground = "${colors.base07}";
background-darker = "${palette.base00}";
background = "${palette.base01}";
foreground = "${palette.base07}";
};
};