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/tofi.nix | |
| parent | 993ee553170d01d3d0e7bcef7afc05b80f15b10a (diff) | |
| download | home-3be52f10d1ed9844da116ad9364099d72cb6ded4.tar.gz | |
added colorscheme modularity
Diffstat (limited to 'modules/tofi.nix')
| -rw-r--r-- | modules/tofi.nix | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/modules/tofi.nix b/modules/tofi.nix index 83910e1..801aecf 100644 --- a/modules/tofi.nix +++ b/modules/tofi.nix @@ -1,6 +1,7 @@ { config, lib, pkgs, ... }: let cfg = config.modules.tofi; + scheme = config.modules.scheme; in { options.modules.tofi = { @@ -20,22 +21,22 @@ in width = "60%"; height = "50%"; - "text-color" = "#cacaca"; - "placeholder-color" = "#0f0f0f"; + "text-color" = scheme.base05; + "placeholder-color" = scheme.base00; - "selection-background" = "#151515FF"; - "selection-color" = "#8aac8b"; + "selection-background" = scheme.base01; #151515 + "selection-color" = scheme.base0B; "selection-background-padding"= "0, -1"; "text-cursor-style"="bar"; - "text-cursor-color"="#cacaca"; + "text-cursor-color"=scheme.base05; "prompt-text"="\"\""; - "background-color"="#0f0f0f"; + "background-color"=scheme.base00; "outline-width" = 2; - "outline-color" = "#191919"; + "outline-color" = scheme.base01; "border-width"=0; "border-color"="#00000000"; |