mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-22 17:01:11 +01:00
deploy: b8645b18b0
This commit is contained in:
parent
4c048e2bf1
commit
c422705489
1 changed files with 33 additions and 21 deletions
|
|
@ -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 < 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 >= 0.15.0
|
||||||
base16-default-dark = {
|
{
|
||||||
version = "1.0.0";
|
catppuccin-mocha = {
|
||||||
appearance = "dark";
|
meta = {
|
||||||
icon = /path/to/icon.png;
|
version = 1;
|
||||||
name = "base16 default dark";
|
name = "Catppuccin Mocha";
|
||||||
description = "base16 default dark by Chris Kempson";
|
description = "Cozy feeling with color-rich accents";
|
||||||
palette = {
|
variant = "dark";
|
||||||
background = "#181818";
|
icon = "icons/catppuccin-mocha.png";
|
||||||
foreground = "#d8d8d8";
|
inherits = "vicinae-dark";
|
||||||
blue = "#7cafc2";
|
};
|
||||||
green = "#a3be8c";
|
|
||||||
magenta = "#ba8baf";
|
colors = {
|
||||||
orange = "#dc9656";
|
core = {
|
||||||
purple = "#a16946";
|
background = "#1E1E2E";
|
||||||
red = "#ab4642";
|
foreground = "#CDD6F4";
|
||||||
yellow = "#f7ca88";
|
secondary_background = "#181825";
|
||||||
cyan = "#86c1b9";
|
border = "#313244";
|
||||||
|
accent = "#89B4FA";
|
||||||
|
};
|
||||||
|
accents = {
|
||||||
|
blue = "#89B4FA";
|
||||||
|
green = "#A6E3A1";
|
||||||
|
magenta = "#F5C2E7";
|
||||||
|
orange = "#FAB387";
|
||||||
|
purple = "#CBA6F7";
|
||||||
|
red = "#F38BA8";
|
||||||
|
yellow = "#F9E2AF";
|
||||||
|
cyan = "#94E2D5";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue