Update themes to use nix-colors base16

This commit is contained in:
Henry Sipp
2025-07-01 22:15:24 -05:00
parent 45dd3bfa6a
commit 2ccb0d7113
12 changed files with 95 additions and 355 deletions
+4 -6
View File
@@ -4,17 +4,15 @@
...
}: let
cfg = config.omarchy;
themes = import ../themes.nix;
theme = themes.${cfg.theme};
in {
services.mako = {
enable = true;
settings = {
background-color = theme.background;
text-color = theme.foreground;
border-color = theme.accent;
progress-color = theme.primary;
background-color = "#${config.colorScheme.palette.base00}";
text-color = "${config.colorScheme.palette.base05}";
border-color = "${config.colorScheme.palette.base04}";
progress-color = "${config.colorScheme.palette.base0D}";
width = 420;
height = 110;