diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-04-07 15:50:45 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-04-07 15:50:45 -0400 |
| commit | 3be52f10d1ed9844da116ad9364099d72cb6ded4 (patch) | |
| tree | 092b460f8c065396c7bd9dbcb808f0e9d46f2ca4 /modules/mako.nix | |
| parent | 993ee553170d01d3d0e7bcef7afc05b80f15b10a (diff) | |
| download | home-3be52f10d1ed9844da116ad9364099d72cb6ded4.tar.gz | |
added colorscheme modularity
Diffstat (limited to 'modules/mako.nix')
| -rw-r--r-- | modules/mako.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/mako.nix b/modules/mako.nix index 3e0c4ac..ccc65b7 100644 --- a/modules/mako.nix +++ b/modules/mako.nix @@ -1,6 +1,7 @@ { config, lib, pkgs, ... }: let cfg = config.modules.mako; + scheme = config.modules.scheme; in { options.modules.mako = { @@ -10,9 +11,9 @@ in config = { services.mako = lib.mkIf cfg.enable { enable = true; - backgroundColor = "#0f0f0fff"; - textColor = "#cacacaff"; - borderColor = "#a39ec4ff"; + backgroundColor = scheme.base00; + textColor = scheme.base05; + borderColor = scheme.base0D; #"#a39ec4ff"; borderSize = 1; defaultTimeout = 20000; font = "BerkeleyMonoPatched Nerd Font 10"; |