colors: progress

This commit is contained in:
Charlie Root 2024-09-06 08:38:36 +02:00
commit 8894f7e861

View file

@ -1,24 +1,22 @@
{ {lib, ...}: let
config, inherit (lib) mkOption;
lib, inherit (lib.types) str;
...
}: let
inherit (lib) mkOption;
inherit (lib.types) str;
in { in {
options.modules.style = { options.modules.style = {
colorScheme = { colorScheme = {
name = mkOption { name = mkOption {
type = str; type = str;
default = "catppuccin-mocha"; default = "Catppuccin Mocha";
}; };
slug = { slug = {
type = str;
default = "catppuccin-mocha";
}; };
variant = { variant = {
}; };
colors = mkOption { colors =
mkOption {
}; };
}; };
}; };
} }