From 6abcddcb0dd5bcf71f86aead526256e0c4331822 Mon Sep 17 00:00:00 2001
From: khaneliman
Date: Sun, 12 Oct 2025 18:59:48 +0000
Subject: [PATCH] deploy: 904fa32d77609f281ef32d5209926d81848b687a
---
options.xhtml | 18 ++++++++++++++++--
1 file changed, 16 insertions(+), 2 deletions(-)
diff --git a/options.xhtml b/options.xhtml
index 157540645..b31afb859 100644
--- a/options.xhtml
+++ b/options.xhtml
@@ -80221,10 +80221,12 @@ YAML 1.1 value
-Theme for vivid
+An attribute set of vivid themes.
+Each value can either be a path to a theme file or an attribute set
+defining the theme directly (which will be converted from Nix to YAML).
Type:
-attribute set of absolute path
+attribute set of (absolute path or YAML 1.1 value)
Default:
{ }
@@ -80239,6 +80241,18 @@ attribute set of absolute path
url = "https://raw.githubusercontent.com/NearlyTRex/Vivid/refs/heads/master/themes/catppuccin-mocha.yml";
hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
};
+
+ my-custom-theme = {
+ colors = {
+ blue = "0000ff";
+ };
+ core = {
+ directory = {
+ foreground = "blue";
+ font-style = "bold";
+ };
+ };
+ };
}