1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-22 17:01:11 +01:00
This commit is contained in:
khaneliman 2025-11-09 20:50:48 +00:00
parent 4c048e2bf1
commit c422705489

View file

@ -81011,33 +81011,45 @@ string</p>
</span> </span>
</dt> </dt>
<dd> <dd>
<p>Theme settings to add to the themes folder in <code class="literal">~/.config/vicinae/themes</code>.</p><p>The attribute name of the theme will be the name of theme json file, <p>Theme settings to add to the themes folder in <code class="literal">~/.config/vicinae/themes</code>. See <a class="link" href="https://docs.vicinae.com/theming/getting-started" target="_top">https://docs.vicinae.com/theming/getting-started</a> for supported values.</p><p>The attribute name of the theme will be the name of theme file,
e.g. <code class="literal">base16-default-dark</code> will be <code class="literal">base16-default-dark.json</code>.</p> e.g. <code class="literal">base16-default-dark</code> will be <code class="literal">base16-default-dark.toml</code> (or <code class="literal">.json</code> if vicinae version is &lt; 0.15.0).</p>
<p><span class="emphasis"><em>Type:</em></span> <p><span class="emphasis"><em>Type:</em></span>
JSON value</p> TOML value</p>
<p><span class="emphasis"><em>Default:</em></span> <p><span class="emphasis"><em>Default:</em></span>
<code class="literal">{ }</code></p> <code class="literal">{ }</code></p>
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting">{ <p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting"># vicinae &gt;= 0.15.0
base16-default-dark = { {
version = &quot;1.0.0&quot;; catppuccin-mocha = {
appearance = &quot;dark&quot;; meta = {
icon = /path/to/icon.png; version = 1;
name = &quot;base16 default dark&quot;; name = &quot;Catppuccin Mocha&quot;;
description = &quot;base16 default dark by Chris Kempson&quot;; description = &quot;Cozy feeling with color-rich accents&quot;;
palette = { variant = &quot;dark&quot;;
background = &quot;#181818&quot;; icon = &quot;icons/catppuccin-mocha.png&quot;;
foreground = &quot;#d8d8d8&quot;; inherits = &quot;vicinae-dark&quot;;
blue = &quot;#7cafc2&quot;; };
green = &quot;#a3be8c&quot;;
magenta = &quot;#ba8baf&quot;; colors = {
orange = &quot;#dc9656&quot;; core = {
purple = &quot;#a16946&quot;; background = &quot;#1E1E2E&quot;;
red = &quot;#ab4642&quot;; foreground = &quot;#CDD6F4&quot;;
yellow = &quot;#f7ca88&quot;; secondary_background = &quot;#181825&quot;;
cyan = &quot;#86c1b9&quot;; border = &quot;#313244&quot;;
accent = &quot;#89B4FA&quot;;
};
accents = {
blue = &quot;#89B4FA&quot;;
green = &quot;#A6E3A1&quot;;
magenta = &quot;#F5C2E7&quot;;
orange = &quot;#FAB387&quot;;
purple = &quot;#CBA6F7&quot;;
red = &quot;#F38BA8&quot;;
yellow = &quot;#F9E2AF&quot;;
cyan = &quot;#94E2D5&quot;;
};
}; };
}; };
} }