Add obsidian theming

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-07-12 19:34:40 +03:00
parent 124f6ab292
commit 5640075117
9 changed files with 305 additions and 124 deletions

View File

@@ -197,7 +197,7 @@ in
};
};
ansi = {
basic = {
blend = mkOption {
type = bool;
default = true;
@@ -210,10 +210,10 @@ in
description = "The color of red.";
};
green = mkOption {
orange = mkOption {
type = str;
default = "#00ff00";
description = "The color of green.";
default = "#ff8000";
description = "The color of orange.";
};
yellow = mkOption {
@@ -222,10 +222,16 @@ in
description = "The color of yellow.";
};
orange = mkOption {
green = mkOption {
type = str;
default = "#ff8000";
description = "The color of orange.";
default = "#00ff00";
description = "The color of green.";
};
cyan = mkOption {
type = str;
default = "#00ffff";
description = "The color of cyan.";
};
blue = mkOption {
@@ -240,10 +246,10 @@ in
description = "The color of magenta.";
};
cyan = mkOption {
pink = mkOption {
type = str;
default = "#00ffff";
description = "The color of cyan.";
default = "#ffc0cb";
description = "The color of pink.";
};
};
};