diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-04-07 17:53:00 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-04-07 17:53:00 -0400 |
| commit | 2ddf877c6cb78a10bfcb5b33142195b47232d622 (patch) | |
| tree | 15e541c450756b78c652f204ff60a622f504e3ff /modules/colors/google-dark.nix | |
| parent | 3be52f10d1ed9844da116ad9364099d72cb6ded4 (diff) | |
| download | home-2ddf877c6cb78a10bfcb5b33142195b47232d622.tar.gz | |
zathura and more colorscheme stuff
Diffstat (limited to 'modules/colors/google-dark.nix')
| -rw-r--r-- | modules/colors/google-dark.nix | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/modules/colors/google-dark.nix b/modules/colors/google-dark.nix new file mode 100644 index 0000000..850ca8b --- /dev/null +++ b/modules/colors/google-dark.nix @@ -0,0 +1,35 @@ +{ config, lib, pkgs, ... }: +let + cfg = config.modules.colors.google-dark; + hexColorRegex = ''#([0-9a-fA-F]{3}){1,2}''; + hexColor = { + type = lib.types.strMatching hexColorRegex; + }; +in +{ + options.modules.colors.google-dark = { + enable = lib.mkEnableOption "google-dark theme"; + }; + + config = lib.mkIf cfg.enable { + modules.scheme = { + name = "base16-google-dark"; + base00 = "#1d1f21"; + base01 = "#282a2e"; + base02 = "#373b41"; + base03 = "#969896"; + base04 = "#b4b7b4"; + base05 = "#c5c8c6"; + base06 = "#e0e0e0"; + base07 = "#ffffff"; + base08 = "#CC342B"; + base09 = "#F96A38"; + base0A = "#FBA922"; + base0B = "#198844"; + base0C = "#3971ED"; + base0D = "#3971ED"; + base0E = "#A36AC7"; + base0F = "#3971ED"; + }; + }; +} |