From 993ee553170d01d3d0e7bcef7afc05b80f15b10a Mon Sep 17 00:00:00 2001 From: Stefan Weigl-Bosker Date: Mon, 7 Apr 2025 15:24:01 -0400 Subject: imporve colors module --- modules/mountain.nix | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 modules/mountain.nix (limited to 'modules/mountain.nix') diff --git a/modules/mountain.nix b/modules/mountain.nix deleted file mode 100644 index 94066d6..0000000 --- a/modules/mountain.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ config, lib, pkgs, ... }: -let - cfg = config.modules.mountain; - hexColorRegex = ''#([0-9a-fA-F]{3}){1,2}''; - hexColor = { - type = lib.types.strMatching hexColorRegex; - }; -in -{ - options.modules.mountain = { - enable = lib.mkEnableOption "mountain theme"; - }; - - config = lib.mkIf cfg.enable { - modules.scheme = { - name = "base16-default-dark"; - base00 = "#0f0f0f"; - base01 = "#191919"; - base02 = "#262626"; - base03 = "#4c4c4c"; - base04 = "#ac8a8c"; - base05 = "#cacaca"; - base06 = "#e7e7e7"; - base07 = "#f0f0f0"; - base08 = "#ac8a8c"; - base09 = "#ceb188"; - base0A = "#aca98a"; - base0B = "#8aac8b"; - base0C = "#8aabac"; - base0D = "#8f8aac"; - base0E = "#ac8aac"; - base0F = "#ac8a8c"; - }; - }; -} -- cgit v1.2.3