diff --git a/modules/options/style/colors.nix b/modules/options/style/colors.nix new file mode 100644 index 0000000..4964848 --- /dev/null +++ b/modules/options/style/colors.nix @@ -0,0 +1,24 @@ +{ + config, + lib, + ... +}: let +inherit (lib) mkOption; +inherit (lib.types) str; +in { + options.modules.style = { + colorScheme = { + name = mkOption { +type = str; +default = "catppuccin-mocha"; + }; + slug = { + }; + variant = { + }; + colors = mkOption { + + }; + }; + }; +} diff --git a/modules/style/colors.nix b/modules/style/colors.nix new file mode 100644 index 0000000..e69de29