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>
|
||||
</dt>
|
||||
<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,
|
||||
e.g. <code class="literal">base16-default-dark</code> will be <code class="literal">base16-default-dark.json</code>.</p>
|
||||
<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.toml</code> (or <code class="literal">.json</code> if vicinae version is < 0.15.0).</p>
|
||||
|
||||
<p><span class="emphasis"><em>Type:</em></span>
|
||||
JSON value</p>
|
||||
TOML value</p>
|
||||
|
||||
<p><span class="emphasis"><em>Default:</em></span>
|
||||
<code class="literal">{ }</code></p>
|
||||
|
||||
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting">{
|
||||
base16-default-dark = {
|
||||
version = "1.0.0";
|
||||
appearance = "dark";
|
||||
icon = /path/to/icon.png;
|
||||
name = "base16 default dark";
|
||||
description = "base16 default dark by Chris Kempson";
|
||||
palette = {
|
||||
background = "#181818";
|
||||
foreground = "#d8d8d8";
|
||||
blue = "#7cafc2";
|
||||
green = "#a3be8c";
|
||||
magenta = "#ba8baf";
|
||||
orange = "#dc9656";
|
||||
purple = "#a16946";
|
||||
red = "#ab4642";
|
||||
yellow = "#f7ca88";
|
||||
cyan = "#86c1b9";
|
||||
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting"># vicinae >= 0.15.0
|
||||
{
|
||||
catppuccin-mocha = {
|
||||
meta = {
|
||||
version = 1;
|
||||
name = "Catppuccin Mocha";
|
||||
description = "Cozy feeling with color-rich accents";
|
||||
variant = "dark";
|
||||
icon = "icons/catppuccin-mocha.png";
|
||||
inherits = "vicinae-dark";
|
||||
};
|
||||
|
||||
colors = {
|
||||
core = {
|
||||
background = "#1E1E2E";
|
||||
foreground = "#CDD6F4";
|
||||
secondary_background = "#181825";
|
||||
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