From d9a3be85cb0dc46705a8da1285ba5602af2014b5 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Tue, 3 Sep 2024 21:44:59 +0200 Subject: [PATCH] style/colors.nix: init --- modules/options/style/colors.nix | 24 ++++++++++++++++++++++++ modules/style/colors.nix | 0 2 files changed, 24 insertions(+) create mode 100644 modules/options/style/colors.nix create mode 100644 modules/style/colors.nix 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