colors: progress
This commit is contained in:
parent
841db5d0ca
commit
8894f7e861
1 changed files with 10 additions and 12 deletions
|
@ -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 {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue