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 @@
{
config,
lib,
...
}: let
inherit (lib) mkOption;
inherit (lib.types) str;
{lib, ...}: let
inherit (lib) mkOption;
inherit (lib.types) str;
in {
options.modules.style = {
colorScheme = {
name = mkOption {
type = str;
default = "catppuccin-mocha";
type = str;
default = "Catppuccin Mocha";
};
slug = {
type = str;
default = "catppuccin-mocha";
};
variant = {
};
colors = mkOption {
};
colors =
mkOption {
};
};
};
}