Compare commits
27 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a10453d752 | |||
| fb9a4088ed | |||
| a875817fd0 | |||
| 9c312943de | |||
| f61cef96d5 | |||
| e4b2dffe1d | |||
| f41d9af994 | |||
| c73c774aea | |||
| aac39be572 | |||
| 28ccd13111 | |||
| d98de5aba4 | |||
| f01b841aa8 | |||
| 5313684b21 | |||
| 13a34fb1d0 | |||
| a393126674 | |||
| 3050947e01 | |||
| bb19899bd7 | |||
| d124163643 | |||
| 5d29a19100 | |||
| 8e13e41d01 | |||
| 5b8fe2960e | |||
| c7f127b9fe | |||
| 4e1ccfb018 | |||
| 562c87c968 | |||
| d7329a5816 | |||
| 1355d467f1 | |||
| 0f138c518c |
6
.gitignore
vendored
6
.gitignore
vendored
@@ -5,6 +5,7 @@ __pycache__/
|
||||
.ipynb_checkpoints/
|
||||
.pytest_cache/
|
||||
.python-version
|
||||
.venv/
|
||||
|
||||
# vendor and build files
|
||||
dist/
|
||||
@@ -14,7 +15,10 @@ docs/_autosummary/
|
||||
docs/_build/
|
||||
|
||||
# local
|
||||
notebooks/
|
||||
/Makefile
|
||||
|
||||
data/
|
||||
archive/
|
||||
|
||||
notebooks/color_spaces_manyview.ipynb
|
||||
notebooks/oklch_srgb_spherical.ipynb
|
||||
|
||||
200
DESIGN.md
200
DESIGN.md
@@ -1,40 +1,43 @@
|
||||
# Theme constraints
|
||||
The following general constraints are followed as palette options are mapped onto
|
||||
concrete themes:
|
||||
The following general constraints are followed as palette options are mapped
|
||||
onto concrete themes:
|
||||
|
||||
+ Harshness levels have monotone differences of a single shade.
|
||||
+ "Hard" themes anchor their background to the most extreme shade appropriate for the
|
||||
scheme (i.e., lightest shade for "light," darkest shade for "dark"), ensuring the
|
||||
palette's "monotone width" is fully spanned by the theme options.
|
||||
+ App-specific monotone settings have differences of a single shade compared to the
|
||||
system monotone settings.
|
||||
+ Shade differences between corresponding background/foreground settings should be
|
||||
constant (e.g., between `bg0` and `fg3`, `bg1` and `fg2`, etc)
|
||||
+ "Hard" themes anchor their background to the most extreme shade appropriate
|
||||
for the scheme (i.e., lightest shade for "light," darkest shade for "dark"),
|
||||
ensuring the palette's "monotone width" is fully spanned by the theme
|
||||
options.
|
||||
+ App-specific monotone settings have differences of a single shade compared to
|
||||
the system monotone settings.
|
||||
+ Shade differences between corresponding background/foreground settings should
|
||||
be constant (e.g., between `bg0` and `fg3`, `bg1` and `fg2`, etc)
|
||||
|
||||
The primary goal of these constraints is to ensure each theme in a collection defined
|
||||
around a single palette is 1) sufficiently _distinct_, 2) attains sufficient _breadth_
|
||||
under the palette, and 3) upholds _relative invariance_ under key properties (e.g.,
|
||||
lightness differences).
|
||||
The primary goal of these constraints is to ensure each theme in a collection
|
||||
defined around a single palette is 1) sufficiently _distinct_, 2) attains
|
||||
sufficient _breadth_ under the palette, and 3) upholds _relative invariance_
|
||||
under key properties (e.g., lightness differences).
|
||||
|
||||

|
||||
|
||||
## Example
|
||||
The following is a natural solution to these constraints, demonstrated on a general
|
||||
example setting: a possible useful analogy is a sliding window that, on its own spans a
|
||||
given theme's `bg0-fg0` settings, while globally sliding across all available values
|
||||
in the palette. If associating integers `0-10` to indices in a list of monotone shades, and
|
||||
`bg-fg` is the syntax used to indicate that theme's shade range, we might have the
|
||||
following for dark mode themes across harshness levels:
|
||||
The following is a natural solution to these constraints, demonstrated on a
|
||||
general example setting: a possible useful analogy is a sliding window that, on
|
||||
its own spans a given theme's `bg0-fg0` settings, while globally sliding across
|
||||
all available values in the palette. If associating integers `0-10` to indices
|
||||
in a list of monotone shades, and `bg-fg` is the syntax used to indicate that
|
||||
theme's shade range, we might have the following for dark mode themes across
|
||||
harshness levels:
|
||||
|
||||
```
|
||||
Dark (system) 0-7 ; 1-8 ; 2-9
|
||||
Dark (app) 1-8 ; 2-9 ; 3-10
|
||||
```
|
||||
|
||||
There are sliding windows at both the system-app level *and* the harshness-level, in a
|
||||
sense. Constraints are followed:
|
||||
There are sliding windows at both the system-app level *and* the
|
||||
harshness-level, in a sense. Constraints are followed:
|
||||
|
||||
+ Harshness levels, separated by semicolon, differ by a single shade from hard to soft.
|
||||
+ Harshness levels, separated by semicolon, differ by a single shade from hard
|
||||
to soft.
|
||||
+ The hard theme anchors its background to the darkest available shade.
|
||||
+ Monotones between system and app differ by a single shade.
|
||||
+ Differences between bg/fg (value of 7) remains constant across all themes.
|
||||
@@ -64,45 +67,126 @@ App, light
|
||||
```
|
||||
|
||||
# Accent contrast
|
||||
Each group of biome monotones have nearly identical (WCAG 2) contrast ratios against
|
||||
white/black for all lightness levels (ratios identical between biomes). These are
|
||||
selected in a heavily constrained OKLCH context, and given the perceptual uniformity
|
||||
attached to lightness, we can expect very similar contrast ratios for each accent under
|
||||
a given biome lightness (e.g., the `l65` red tone will have the same ratio under the
|
||||
grassland, tundra, and savanna monotones).
|
||||
Each group of biome monotones have nearly identical (WCAG 2) contrast ratios
|
||||
against white/black for all lightness levels (ratios identical between biomes).
|
||||
These are selected in a heavily constrained OKLCH context, and given the
|
||||
perceptual uniformity attached to lightness, we can expect very similar
|
||||
contrast ratios for each accent under a given biome lightness (e.g., the `l65`
|
||||
red tone will have the same ratio under the grassland, tundra, and savanna
|
||||
monotones).
|
||||
|
||||
In terms of selecting accents for themes (by harshness and scheme), what matters is
|
||||
at what lightness level all accent colors meet/exceed a particular contrast threshold.
|
||||
Again, the ratios themselves are effectively constant across biome monotones, and thus
|
||||
dependent entirely on the monotone lightness being used. This of course is determined
|
||||
primarily by whether the theme is a light or dark one, and what level of harshness is
|
||||
being used. The following are the relevant values for making a decision. We want to
|
||||
ensure all accents can reach >4.5 WCAG 2 contrast ratio (the standard requirement for
|
||||
small text on the web) against all biome monotones for each theme:
|
||||
In terms of selecting accents for themes (by harshness and scheme), what
|
||||
matters is at what lightness level all accent colors meet/exceed a particular
|
||||
contrast threshold. Again, the ratios themselves are effectively constant
|
||||
across biome monotones, and thus dependent entirely on the monotone lightness
|
||||
being used. This of course is determined primarily by whether the theme is a
|
||||
light or dark one, and what level of harshness is being used. The following are
|
||||
the relevant values for making a decision. We want to ensure all accents can
|
||||
reach >4.5 WCAG 2 contrast ratio (the standard requirement for small text on
|
||||
the web) against all biome monotones for each theme:
|
||||
|
||||
+ For BG l20 (harsh, dark) -> l65 is min lightness where all accents have CR >=4.5
|
||||
+ For BG l25 (regular, dark) -> l65 is min lightness where all accents have CR >=4.5
|
||||
+ For BG l30 (soft, dark) -> l70 is min lightness where all accents have CR >=4.5
|
||||
+ For BG l20 (harsh, dark) -> l65 is min lightness where all accents have CR
|
||||
≥4.5
|
||||
+ For BG l25 (regular, dark) -> l65 is min lightness where all accents have CR
|
||||
≥4.5
|
||||
+ For BG l30 (soft, dark) -> l70 is min lightness where all accents have CR
|
||||
≥4.5
|
||||
|
||||
+ For BG l90 (harsh, dark) -> l45 is max lightness where all accents have CR >=4.5
|
||||
+ For BG l85 (regular, dark) -> l45 is min lightness where all accents have CR >=4.5
|
||||
+ For BG l80 (soft, dark) -> l40 is min lightness where all accents have CR >=4.5
|
||||
+ For BG l90 (harsh, dark) -> l45 is max lightness where all accents have CR
|
||||
≥4.5
|
||||
+ For BG l85 (regular, dark) -> l45 is min lightness where all accents have CR
|
||||
≥4.5
|
||||
+ For BG l80 (soft, dark) -> l40 is min lightness where all accents have CR
|
||||
≥4.5
|
||||
|
||||
For the monotone boundaries (l15 and l95, neither of which are possible backgrounds for
|
||||
terminal or nvim in the current theme definitions), the relevant lightness levels are
|
||||
l60 and l50, respectively.
|
||||
For the monotone boundaries (l15 and l95, neither of which are possible
|
||||
backgrounds for terminal or nvim in the current theme definitions), the
|
||||
relevant lightness levels are l60 and l50, respectively.
|
||||
|
||||
While not necessary, it feels intuitive for us to shift the accent colors up/down by the
|
||||
relative change in monotones across harshness levels. This has led to the choice of l60
|
||||
accents for the harsh-dark theme, l65 for regular-dark, and l70 for soft-dark. This
|
||||
technically breaks the 4.5 ratio requirement, though, for the harsh theme, so you
|
||||
ultimately need to pick one: either soften the contrast constraint, or allow different
|
||||
harshness levels to use the same accent lightness. I think either is acceptable, but for
|
||||
now I've gone with the former, loosening the contrast to a ratio of >4.0 with respect to
|
||||
the background. This allows for the slightly tighter group of accent lightnesses:
|
||||
l45-l50-l55 for light, l60-l65-l70 for dark. Note that the "center shade" of the l15-l95
|
||||
shade group is l55, meaning these groups are very central (the light triplet could move
|
||||
down by one shade step, but we want these accents to be as bright as we can get away
|
||||
with; otherwise, they are extremely dull in the light modes, and we thus don't mind bias
|
||||
toward a brighter lightness).
|
||||
While not necessary, it feels intuitive for us to shift the accent colors
|
||||
up/down by the relative change in monotones across harshness levels. This has
|
||||
led to the choice of l60 accents for the harsh-dark theme, l65 for
|
||||
regular-dark, and l70 for soft-dark. This technically breaks the 4.5 ratio
|
||||
requirement, though, for the harsh theme, so you ultimately need to pick one:
|
||||
either soften the contrast constraint, or allow different harshness levels to
|
||||
use the same accent lightness. I think either is acceptable, but for now I've
|
||||
gone with the former, loosening the contrast to a ratio of >4.0 with respect to
|
||||
the background. This allows for the slightly tighter group of accent
|
||||
lightnesses: l45-l50-l55 for light, l60-l65-l70 for dark. Note that the "center
|
||||
shade" of the l15-l95 shade group is l55, meaning these groups are very central
|
||||
(the light triplet could move down by one shade step, but we want these accents
|
||||
to be as bright as we can get away with; otherwise, they are extremely dull in
|
||||
the light modes, and we thus don't mind bias toward a brighter lightness).
|
||||
|
||||
The following table shows the lightness thresholds of accent colors required to
|
||||
achieve various contrast ratios under different lightness levels of monotone
|
||||
backgrounds. These ratios correspond to WCAG 2.2 standards:
|
||||
|
||||
- WCAG AA: contrast ratio ≥3:1 for large text, ≥4.5:1 for normal text
|
||||
- WCAG AAA: contrast ratio ≥4.5:1 for large text, ≥7:1 for normal text
|
||||
|
||||
The official theme variants treat WCAG AA for normal text as the sweet spot,
|
||||
but one could redefine accent selection around a more extreme contrast
|
||||
threshold as desired.
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th rowspan="2">Monotone<br>lightness</th>
|
||||
<th colspan="3">Accent lightness for contrast ratio</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>3:1</th>
|
||||
<th>4.5:1</th>
|
||||
<th>7:1</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>=15%</td>
|
||||
<td>≥50%</td>
|
||||
<td>≥60%</td>
|
||||
<td>≥75%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>=20%</td>
|
||||
<td>≥55%</td>
|
||||
<td>≥65%</td>
|
||||
<td>≥75%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>=25%</td>
|
||||
<td>≥55%</td>
|
||||
<td>≥65%</td>
|
||||
<td>≥80%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>=30%</td>
|
||||
<td>≥60%</td>
|
||||
<td>≥70%</td>
|
||||
<td>≥80%</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>=80%</td>
|
||||
<td>≤50%</td>
|
||||
<td>≤40%</td>
|
||||
<td>≤30%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>=85%</td>
|
||||
<td>≤50%</td>
|
||||
<td>≤45%</td>
|
||||
<td>≤30%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>=90%</td>
|
||||
<td>≤55%</td>
|
||||
<td>≤45%</td>
|
||||
<td>≤35%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>=95%</td>
|
||||
<td>≤60%</td>
|
||||
<td>≤50%</td>
|
||||
<td>≤40%</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
47
FIREFOX.md
47
FIREFOX.md
@@ -1,47 +0,0 @@
|
||||
# Firefox themes
|
||||
|
||||
## Default (grays)
|
||||

|
||||
|
||||
[_Monobiome dark_][4]
|
||||
|
||||

|
||||
|
||||
[_Monobiome light_][5]
|
||||
|
||||
## Grassland biome
|
||||

|
||||
|
||||
[_Grassland monobiome dark_][6]
|
||||
|
||||

|
||||
|
||||
[_Grassland monobiome light_][6]
|
||||
|
||||
## Tundra biome
|
||||

|
||||
|
||||
[_Tundra monobiome dark_][8]
|
||||
|
||||

|
||||
|
||||
[_Tundra monobiome light_][9]
|
||||
|
||||
## Savanna biome
|
||||

|
||||
|
||||
[_Savanna monobiome dark_][10]
|
||||
|
||||

|
||||
|
||||
[_Savanna monobiome light_][11]
|
||||
|
||||
|
||||
[4]: https://addons.mozilla.org/en-US/firefox/addon/monobiome-dark/
|
||||
[5]: https://addons.mozilla.org/en-US/firefox/addon/monobiome-light/
|
||||
[6]: https://addons.mozilla.org/en-US/firefox/addon/grassland-monobiome-dark/
|
||||
[7]: https://addons.mozilla.org/en-US/firefox/addon/grassland-monobiome-light/
|
||||
[8]: https://addons.mozilla.org/en-US/firefox/addon/tundra-monobiome-dark/
|
||||
[9]: https://addons.mozilla.org/en-US/firefox/addon/tundra-monobiome-light/
|
||||
[10]: https://addons.mozilla.org/en-US/firefox/addon/savanna-monobiome-dark/
|
||||
[11]: https://addons.mozilla.org/en-US/firefox/addon/savanna-monobiome-light/
|
||||
211
README.md
211
README.md
@@ -1,150 +1,157 @@
|
||||
# Monobiome
|
||||
`monobiome` is a minimal, balanced color palette for use in terminals and text editors. It
|
||||
was designed in OKLCH space to achieve perceptual uniformity across all hues at various
|
||||
levels of luminance, and does so for _four_ monotone bases and _five_ accent colors. Each
|
||||
of the monotone base colors (named according to a natural biome whose colors they loosely
|
||||
resemble) are designed to achieve identical contrast with the accents, and thus any one of
|
||||
the four can be selected to change the feeling of the palette without sacrificing
|
||||
readability.
|
||||
`monobiome` is a minimal, balanced color palette for use in terminals and text
|
||||
editors. It was designed in OKLCH space to achieve perceptual uniformity across
|
||||
all hues at various levels of luminance, and does so for _five_ monotone bases
|
||||
and _five_ accent colors (plus one gray "default"). Each of the monotone base
|
||||
colors (named according to a natural biome whose colors they loosely resemble)
|
||||
are designed to achieve identical contrast with the accents, and thus any one
|
||||
of the options can be selected to change the feeling of the palette without
|
||||
sacrificing readability.
|
||||
|
||||

|
||||

|
||||
_(Preview of default light and dark theme variants)_
|
||||
|
||||
See screenshots for the full set of theme variants in [THEMES](THEMES.md) (also discussed
|
||||
below).
|
||||
|
||||
The name "monobiome" connects the palette to its two key sources of inspiration:
|
||||
|
||||
- `mono-`: `monobiome` is inspired by the [`monoindustrial` theme][1], and attempts to extend
|
||||
and balance its accents while retaining similar color identities.
|
||||
- `-biome`: the desire for several distinct monotone options entailed finding a way to ground the
|
||||
subtle color variations that were needed, and I liked the idea of tying the choices to
|
||||
naturally occurring environmental variation like Earth's biomes (even if it is a very
|
||||
loose affiliation, e.g., green-ish = grass, basically).
|
||||
See screenshots for the full set of theme variants in [THEMES](THEMES.md) (also
|
||||
discussed below).
|
||||
|
||||
The name "monobiome" connects the palette to its two key sources of
|
||||
inspiration:
|
||||
|
||||
- `mono-`: `monobiome` is inspired by the [`monoindustrial` theme][1], and
|
||||
attempts to extend and balance its accents while retaining similar color
|
||||
identities.
|
||||
- `-biome`: the desire for several distinct monotone options entailed finding a
|
||||
way to ground the subtle color variations that were needed, and I liked the
|
||||
idea of tying the choices to naturally occurring environmental variation like
|
||||
Earth's biomes (even if it is a very loose affiliation, e.g., green-ish =
|
||||
grass, basically).
|
||||
|
||||
## Palette
|
||||
The `monobiome` palette consists of four monotone bases and five accent colors, each of
|
||||
which is anchored by hue and spread uniformly across lightness levels 15 to 95 (in OKLCH
|
||||
space).
|
||||
The `monobiome` palette consists of four monotone bases and five accent colors,
|
||||
each of which is anchored by hue and spread uniformly across lightness levels
|
||||
15 to 95 (in OKLCH space).
|
||||
|
||||

|
||||
|
||||
The chroma curve for each accent is carefully designed to vary smoothly across the
|
||||
lightness spectrum, with the goal of retaining strong color identity in all settings.
|
||||
Additionally, as alluded to above, the (WCAG 2) contrast ratio between any choice of
|
||||
monotone background at a given lightness level and the accent colors is virtually
|
||||
identical ($\pm 0.1$). Put another way, the relative contrast between accents depends only
|
||||
on the _lightness_ of the background monotone, not its hue. *(Note that this is
|
||||
not generally the case; at a fixed lightness level, the contrast between two
|
||||
colors depends on their hue.)*
|
||||
The chroma curve for each accent is carefully designed to vary smoothly across
|
||||
the lightness spectrum, with the goal of retaining strong color identity in all
|
||||
settings. Additionally, as alluded to above, the (WCAG 2) contrast ratio
|
||||
between any choice of monotone background at a given lightness level and the
|
||||
accent colors is virtually identical ($\pm 0.1$). Put another way, the relative
|
||||
contrast between accents depends only on the _lightness_ of the background
|
||||
monotone, not its hue. *(Note that this is not generally the case; at a fixed
|
||||
lightness level, the contrast between two colors depends on their hue.)*
|
||||
|
||||
## Concrete themes
|
||||

|
||||
*(Default light theme variants)*
|
||||
|
||||

|
||||
*(Default dark theme variants)*
|
||||

|
||||
|
||||
Themes are derived from the `monobiome` palette by varying both the monotone hue (the
|
||||
"biome") and the extent of the background/foreground lightness (the "harshness"). This is
|
||||
done for both light and dark schemes, and in each case accent colors are selected at a
|
||||
lightness level that ensures each meet a minimum contrast relative to the primary
|
||||
background. The following diagram shows each of the 24 resulting combinations:
|
||||
*(Light and dark theme splits of Alpine and Tundra biomes)*
|
||||
|
||||

|
||||
Themes are derived from the `monobiome` palette by varying both the monotone
|
||||
hue (the "biome") and the extent of the background/foreground lightness (the
|
||||
"harshness"). This is done for both light and dark schemes, and in each case
|
||||
accent colors are selected at a lightness level that ensures each meet a
|
||||
minimum contrast relative to the primary background. The following diagram
|
||||
shows each of the 36 resulting combinations:
|
||||
|
||||
The "soft" harshness level uses monotone shades closer to the mid-shade (lightness level
|
||||
55), whereas "hard" harshness uses shades further from it. Once the biome and harshness
|
||||
level are chosen, we're left with a bounded monotone range over which common theme
|
||||
elements can be defined. For example, the following demonstrates how background and
|
||||
foreground elements are chosen for the `monobiome` Vim themes:
|
||||

|
||||
|
||||
The "soft" harshness level uses monotone shades closer to the mid-shade
|
||||
(lightness level 55), whereas "hard" harshness uses shades further from it.
|
||||
Once the biome and harshness level are chosen, we're left with a bounded
|
||||
monotone range over which common theme elements can be defined. For example,
|
||||
the following demonstrates how background and foreground elements are chosen
|
||||
for the `monobiome` Vim themes:
|
||||
|
||||

|
||||
|
||||
Note how theme elements are mapped onto the general identifiers `bg0-bg3` for backgrounds,
|
||||
`fg0-fg3` for foregrounds, and `gray` for a central gray tone. The relative properties
|
||||
(lightness differences, contrast ratios) between colors assigned to these identifiers are
|
||||
preserved regardless of biome or harshness (e.g., `bg3` and `grey` are _always_ separated
|
||||
by 20 lightness points in any theme). As a result, applying `monobiome` themes to specific
|
||||
applications can effectively boil down to defining a single "relative template" that uses
|
||||
these identifiers, after which any of the 24 theme options can applied immediately.
|
||||
Note how theme elements are mapped onto the general identifiers `bg0-bg3` for
|
||||
backgrounds, `fg0-fg3` for foregrounds, and `gray` for a central gray tone. The
|
||||
relative properties (lightness differences, contrast ratios) between colors
|
||||
assigned to these identifiers are preserved regardless of biome or harshness
|
||||
(e.g., `bg3` and `gray` are _always_ separated by 20 lightness points in any
|
||||
theme). As a result, applying `monobiome` themes to specific applications can
|
||||
effectively boil down to defining a single "relative template" that uses these
|
||||
identifiers, after which any of the 36 theme options can applied immediately.
|
||||
|
||||
Read more about how themes are created in [DESIGN](DESIGN.md).
|
||||
|
||||
# Usage
|
||||
This repo provides the 24 theme files for `kitty`, `vim`/`neovim`, [`vim-airline`][2], and
|
||||
`fzf` in the `apps/` directory. You can also find raw palette colors in
|
||||
`colors/monobiome.toml` if you want to use them to define themes for other applications.
|
||||
This repo provides the 36 theme files for `kitty`, `vim`/`neovim`, and `fzf` in
|
||||
the `app-config/` directory. You can also find raw palette colors in
|
||||
`colors/monobiome.toml` if you want to use them to define themes for other
|
||||
applications.
|
||||
|
||||
Each of the files in the `apps/` directory are named according to
|
||||
Each of the files in the `app-config/` directory are named according to
|
||||
|
||||
```sh
|
||||
<harshness>-<biome>-monobiome-<mode>.<config>
|
||||
<harshness>-<biome>-monobiome-<mode>.<ext>
|
||||
```
|
||||
|
||||
For example, `soft-tundra-monobiome-dark.vim` is the Vim theme file for the dark `tundra`
|
||||
variant with the soft harshness level.
|
||||
For example, `monobiome-tundra-dark-soft.vim` is the Vim theme file for the
|
||||
dark `tundra` variant with the soft harshness level.
|
||||
|
||||
## `kitty`
|
||||
Find `kitty` themes in `apps/kitty`. Themes can be activated in your `kitty.conf` with
|
||||
## Applications
|
||||
- `kitty`
|
||||
|
||||
```sh
|
||||
include <theme-file>
|
||||
```
|
||||
Find `kitty` themes in `app-config/kitty`. Themes can be activated in your
|
||||
`kitty.conf` with
|
||||
|
||||
```sh
|
||||
include <theme-file>
|
||||
```
|
||||
|
||||
## `vim`/`neovim`
|
||||
Find `vim`/`neovim` themes in `apps/nvim`. Themes can be activated by placing a theme file
|
||||
on Vim's runtime path and setting it in your `.vimrc`/`init.vim` with
|
||||
Themes are generated using the [`kitty` theme
|
||||
template](templates/apps/kitty/templates/active.theme).
|
||||
|
||||
```sh
|
||||
colorscheme <theme-name>
|
||||
```
|
||||
- `vim`/`neovim`
|
||||
|
||||
## `vim-airline`
|
||||
If you use [`vim-airline`][2], you can find statusline themes in `apps/vim-airline`.
|
||||
Place a theme file in the `airline` theme folder, and activate it in
|
||||
your `.vimrc`/`init.vim` with
|
||||
Find `vim`/`neovim` themes in `app-config/nvim`. Themes can be activated by placing a
|
||||
theme file on Vim's runtime path and setting it in your `.vimrc`/`init.vim`
|
||||
with
|
||||
|
||||
```sh
|
||||
colorscheme <theme-name>
|
||||
```
|
||||
|
||||
```sh
|
||||
let g:airline_theme='<theme-name>'
|
||||
```
|
||||
Themes are generated using the [`vim` theme
|
||||
template](templates/apps/nvim/templates/theme.vim).
|
||||
|
||||
## `fzf`
|
||||
In `apps/fzf`, you can find scripts that can be ran to export FZF theme variables. In your
|
||||
shell config (e.g., `.bashrc` or `.zshrc`), you can source these files to apply them in
|
||||
your terminal:
|
||||
- `fzf`
|
||||
|
||||
```sh
|
||||
source <theme-file>
|
||||
```
|
||||
In `app-config/fzf`, you can find scripts that can be ran to export FZF theme
|
||||
variables. In your shell config (e.g., `.bashrc` or `.zshrc`), you can source
|
||||
these files to apply them in your terminal:
|
||||
|
||||
```sh
|
||||
source <theme-file>
|
||||
```
|
||||
|
||||
## Firefox
|
||||
Find links to install available light/dark Firefox themes for each biome in
|
||||
[FIREFOX](/FIREFOX.md). You can also download raw XPI files for each theme in
|
||||
`apps/firefox/`.
|
||||
Themes are generated using the [`fzf` theme
|
||||
template](templates/apps/fzf/templates/active.theme).
|
||||
|
||||

|
||||
*Default monobiome*
|
||||
- Firefox
|
||||
|
||||

|
||||
*Grassland monobiome*
|
||||
Firefox themes for all monotone backgrounds are publicly listed as [Mozilla
|
||||
add-ons][2], and switch between light/dark schemes based on system settings.
|
||||
You can also download raw XPI files for each theme in `app-config/firefox/`,
|
||||
each of which is generated using the [Firefox `manifest.json`
|
||||
template](templates/apps/firefox/templates/none-dark.manifest.json).
|
||||
|
||||

|
||||
*Tundra monobiome*
|
||||
Static [light][4] and [dark][5] are additionally available.
|
||||
|
||||

|
||||
*Savanna monobiome*
|
||||

|
||||
|
||||
# Switching themes
|
||||
[`symconf`][3] is a general-purpose application config manager that can be used to
|
||||
generate all `monobiome` variants from a single palette file, and set themes for all apps
|
||||
at once. You can find example theme templates in `apps/symconf` which provide general
|
||||
theme variables you can use in your own config templates.
|
||||
[`symconf`][3] is a general-purpose application config manager that can be used
|
||||
to generate all `monobiome` variants from a single palette file, and set themes
|
||||
for all apps at once. You can find example theme templates in
|
||||
`templates/groups/theme`, which provide general theme variables you can use in
|
||||
your own config templates.
|
||||
|
||||
For instance, in an app like `kitty`, you can define a template like
|
||||
|
||||
@@ -197,5 +204,7 @@ biome/harshness/mode. This can be done for any app config file.
|
||||
|
||||
|
||||
[1]: https://github.com/isa/TextMate-Themes/blob/master/monoindustrial.tmTheme
|
||||
[2]: https://github.com/vim-airline/vim-airline
|
||||
[2]: https://addons.mozilla.org/en-US/firefox/collections/18495484/monobiome/
|
||||
[3]: https://github.com/ologio/symconf
|
||||
[4]: https://addons.mozilla.org/en-US/firefox/collections/18495484/monobiome-light/
|
||||
[5]: https://addons.mozilla.org/en-US/firefox/collections/18495484/monobiome-dark/
|
||||
|
||||
11
THEMES.md
11
THEMES.md
@@ -1,10 +1,11 @@
|
||||
# Themes
|
||||
The currently available theme variants across biomes (`default`, `grassland`, `tundra`,
|
||||
`savanna`), harshness (`hard`, `default`, `soft`), and scheme (`light`, `dark`) are shown
|
||||
below, displaying a few lines from a Python file in Neovim.
|
||||
The currently available theme variants across biomes (`default`, `grassland`,
|
||||
`tundra`, `savanna`), harshness (`hard`, `default`, `soft`), and scheme
|
||||
(`light`, `dark`) are shown below, displaying a few lines from a Python file in
|
||||
Neovim.
|
||||
|
||||
You can find the 24 raw screenshots for each theme in `images/theme_caps` under the
|
||||
repository root (with filenames `<harshness>-<biome>-<scheme>.png`).
|
||||
You can find the 24 raw screenshots for each theme in `images/theme_caps` under
|
||||
the repository root (with filenames `<harshness>-<biome>-<scheme>.png`).
|
||||
|
||||
## Default (gray) variants
|
||||

|
||||
|
||||
BIN
app-config/firefox/alpine-monobiome-dark.xpi
Normal file
BIN
app-config/firefox/alpine-monobiome-dark.xpi
Normal file
Binary file not shown.
BIN
app-config/firefox/alpine-monobiome-light.xpi
Normal file
BIN
app-config/firefox/alpine-monobiome-light.xpi
Normal file
Binary file not shown.
BIN
app-config/firefox/alpine-monobiome.xpi
Normal file
BIN
app-config/firefox/alpine-monobiome.xpi
Normal file
Binary file not shown.
BIN
app-config/firefox/badlands-monobiome-dark.xpi
Normal file
BIN
app-config/firefox/badlands-monobiome-dark.xpi
Normal file
Binary file not shown.
BIN
app-config/firefox/badlands-monobiome-light.xpi
Normal file
BIN
app-config/firefox/badlands-monobiome-light.xpi
Normal file
Binary file not shown.
BIN
app-config/firefox/badlands-monobiome.xpi
Normal file
BIN
app-config/firefox/badlands-monobiome.xpi
Normal file
Binary file not shown.
BIN
app-config/firefox/chaparral-monobiome-dark.xpi
Normal file
BIN
app-config/firefox/chaparral-monobiome-dark.xpi
Normal file
Binary file not shown.
BIN
app-config/firefox/chaparral-monobiome-light.xpi
Normal file
BIN
app-config/firefox/chaparral-monobiome-light.xpi
Normal file
Binary file not shown.
BIN
app-config/firefox/chaparral-monobiome.xpi
Normal file
BIN
app-config/firefox/chaparral-monobiome.xpi
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
app-config/firefox/grassland-monobiome.xpi
Normal file
BIN
app-config/firefox/grassland-monobiome.xpi
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
app-config/firefox/savanna-monobiome.xpi
Normal file
BIN
app-config/firefox/savanna-monobiome.xpi
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
app-config/firefox/tundra-monobiome.xpi
Normal file
BIN
app-config/firefox/tundra-monobiome.xpi
Normal file
Binary file not shown.
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#222222
|
||||
--color=bg+:#2e2e2e
|
||||
|
||||
--color=hl:#658ed9
|
||||
--color=hl+:#8daeeb
|
||||
--color=info:#989250
|
||||
--color=marker:#80c089
|
||||
--color=hl:#5f8de4
|
||||
--color=hl+:#85aef9
|
||||
--color=info:#959263
|
||||
--color=marker:#8dbc93
|
||||
|
||||
--color=prompt:#e95949
|
||||
--color=spinner:#989250
|
||||
--color=pointer:#e95949
|
||||
--color=header:#80c089
|
||||
--color=prompt:#e65b4c
|
||||
--color=spinner:#959263
|
||||
--color=pointer:#e65b4c
|
||||
--color=header:#8dbc93
|
||||
|
||||
--color=border:#2e2e2e
|
||||
--color=label:#aeaeae
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#dedede
|
||||
--color=bg+:#cecece
|
||||
|
||||
--color=hl:#3860ac
|
||||
--color=hl+:#234485
|
||||
--color=info:#6a6535
|
||||
--color=marker:#25532e
|
||||
--color=hl:#3860ad
|
||||
--color=hl+:#254582
|
||||
--color=info:#686540
|
||||
--color=marker:#2f5134
|
||||
|
||||
--color=prompt:#b42219
|
||||
--color=spinner:#6a6535
|
||||
--color=pointer:#b42219
|
||||
--color=header:#25532e
|
||||
--color=prompt:#b1291f
|
||||
--color=spinner:#686540
|
||||
--color=pointer:#b1291f
|
||||
--color=header:#2f5134
|
||||
|
||||
--color=border:#cecece
|
||||
--color=label:#aeaeae
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#27201f
|
||||
--color=bg+:#332c2b
|
||||
|
||||
--color=hl:#658ed9
|
||||
--color=hl+:#8daeeb
|
||||
--color=info:#989250
|
||||
--color=marker:#80c089
|
||||
--color=hl:#5f8de4
|
||||
--color=hl+:#85aef9
|
||||
--color=info:#959263
|
||||
--color=marker:#8dbc93
|
||||
|
||||
--color=prompt:#e95949
|
||||
--color=spinner:#989250
|
||||
--color=pointer:#e95949
|
||||
--color=header:#80c089
|
||||
--color=prompt:#e65b4c
|
||||
--color=spinner:#959263
|
||||
--color=pointer:#e65b4c
|
||||
--color=header:#8dbc93
|
||||
|
||||
--color=border:#332c2b
|
||||
--color=label:#aeaeae
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#e5dbda
|
||||
--color=bg+:#d5cbca
|
||||
|
||||
--color=hl:#3860ac
|
||||
--color=hl+:#234485
|
||||
--color=info:#6a6535
|
||||
--color=marker:#25532e
|
||||
--color=hl:#3860ad
|
||||
--color=hl+:#254582
|
||||
--color=info:#686540
|
||||
--color=marker:#2f5134
|
||||
|
||||
--color=prompt:#b42219
|
||||
--color=spinner:#6a6535
|
||||
--color=pointer:#b42219
|
||||
--color=header:#25532e
|
||||
--color=prompt:#b1291f
|
||||
--color=spinner:#686540
|
||||
--color=pointer:#b1291f
|
||||
--color=header:#2f5134
|
||||
|
||||
--color=border:#d5cbca
|
||||
--color=label:#aeaeae
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#26211c
|
||||
--color=bg+:#322d28
|
||||
|
||||
--color=hl:#658ed9
|
||||
--color=hl+:#8daeeb
|
||||
--color=info:#989250
|
||||
--color=marker:#80c089
|
||||
--color=hl:#5f8de4
|
||||
--color=hl+:#85aef9
|
||||
--color=info:#959263
|
||||
--color=marker:#8dbc93
|
||||
|
||||
--color=prompt:#e95949
|
||||
--color=spinner:#989250
|
||||
--color=pointer:#e95949
|
||||
--color=header:#80c089
|
||||
--color=prompt:#e65b4c
|
||||
--color=spinner:#959263
|
||||
--color=pointer:#e65b4c
|
||||
--color=header:#8dbc93
|
||||
|
||||
--color=border:#322d28
|
||||
--color=label:#aeaeae
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#e4ddd7
|
||||
--color=bg+:#d3ccc7
|
||||
|
||||
--color=hl:#3860ac
|
||||
--color=hl+:#234485
|
||||
--color=info:#6a6535
|
||||
--color=marker:#25532e
|
||||
--color=hl:#3860ad
|
||||
--color=hl+:#254582
|
||||
--color=info:#686540
|
||||
--color=marker:#2f5134
|
||||
|
||||
--color=prompt:#b42219
|
||||
--color=spinner:#6a6535
|
||||
--color=pointer:#b42219
|
||||
--color=header:#25532e
|
||||
--color=prompt:#b1291f
|
||||
--color=spinner:#686540
|
||||
--color=pointer:#b1291f
|
||||
--color=header:#2f5134
|
||||
|
||||
--color=border:#d3ccc7
|
||||
--color=label:#aeaeae
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#1e231f
|
||||
--color=bg+:#2a2f2b
|
||||
|
||||
--color=hl:#658ed9
|
||||
--color=hl+:#8daeeb
|
||||
--color=info:#989250
|
||||
--color=marker:#80c089
|
||||
--color=hl:#5f8de4
|
||||
--color=hl+:#85aef9
|
||||
--color=info:#959263
|
||||
--color=marker:#8dbc93
|
||||
|
||||
--color=prompt:#e95949
|
||||
--color=spinner:#989250
|
||||
--color=pointer:#e95949
|
||||
--color=header:#80c089
|
||||
--color=prompt:#e65b4c
|
||||
--color=spinner:#959263
|
||||
--color=pointer:#e65b4c
|
||||
--color=header:#8dbc93
|
||||
|
||||
--color=border:#2a2f2b
|
||||
--color=label:#aeaeae
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#d9e0da
|
||||
--color=bg+:#c9d0ca
|
||||
|
||||
--color=hl:#3860ac
|
||||
--color=hl+:#234485
|
||||
--color=info:#6a6535
|
||||
--color=marker:#25532e
|
||||
--color=hl:#3860ad
|
||||
--color=hl+:#254582
|
||||
--color=info:#686540
|
||||
--color=marker:#2f5134
|
||||
|
||||
--color=prompt:#b42219
|
||||
--color=spinner:#6a6535
|
||||
--color=pointer:#b42219
|
||||
--color=header:#25532e
|
||||
--color=prompt:#b1291f
|
||||
--color=spinner:#686540
|
||||
--color=pointer:#b1291f
|
||||
--color=header:#2f5134
|
||||
|
||||
--color=border:#c9d0ca
|
||||
--color=label:#aeaeae
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#22221c
|
||||
--color=bg+:#2f2e28
|
||||
|
||||
--color=hl:#658ed9
|
||||
--color=hl+:#8daeeb
|
||||
--color=info:#989250
|
||||
--color=marker:#80c089
|
||||
--color=hl:#5f8de4
|
||||
--color=hl+:#85aef9
|
||||
--color=info:#959263
|
||||
--color=marker:#8dbc93
|
||||
|
||||
--color=prompt:#e95949
|
||||
--color=spinner:#989250
|
||||
--color=pointer:#e95949
|
||||
--color=header:#80c089
|
||||
--color=prompt:#e65b4c
|
||||
--color=spinner:#959263
|
||||
--color=pointer:#e65b4c
|
||||
--color=header:#8dbc93
|
||||
|
||||
--color=border:#2f2e28
|
||||
--color=label:#aeaeae
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#dfded6
|
||||
--color=bg+:#cfcec6
|
||||
|
||||
--color=hl:#3860ac
|
||||
--color=hl+:#234485
|
||||
--color=info:#6a6535
|
||||
--color=marker:#25532e
|
||||
--color=hl:#3860ad
|
||||
--color=hl+:#254582
|
||||
--color=info:#686540
|
||||
--color=marker:#2f5134
|
||||
|
||||
--color=prompt:#b42219
|
||||
--color=spinner:#6a6535
|
||||
--color=pointer:#b42219
|
||||
--color=header:#25532e
|
||||
--color=prompt:#b1291f
|
||||
--color=spinner:#686540
|
||||
--color=pointer:#b1291f
|
||||
--color=header:#2f5134
|
||||
|
||||
--color=border:#cfcec6
|
||||
--color=label:#aeaeae
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#1f2227
|
||||
--color=bg+:#2b2e33
|
||||
|
||||
--color=hl:#658ed9
|
||||
--color=hl+:#8daeeb
|
||||
--color=info:#989250
|
||||
--color=marker:#80c089
|
||||
--color=hl:#5f8de4
|
||||
--color=hl+:#85aef9
|
||||
--color=info:#959263
|
||||
--color=marker:#8dbc93
|
||||
|
||||
--color=prompt:#e95949
|
||||
--color=spinner:#989250
|
||||
--color=pointer:#e95949
|
||||
--color=header:#80c089
|
||||
--color=prompt:#e65b4c
|
||||
--color=spinner:#959263
|
||||
--color=pointer:#e65b4c
|
||||
--color=header:#8dbc93
|
||||
|
||||
--color=border:#2b2e33
|
||||
--color=label:#aeaeae
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#dadee6
|
||||
--color=bg+:#caced5
|
||||
|
||||
--color=hl:#3860ac
|
||||
--color=hl+:#234485
|
||||
--color=info:#6a6535
|
||||
--color=marker:#25532e
|
||||
--color=hl:#3860ad
|
||||
--color=hl+:#254582
|
||||
--color=info:#686540
|
||||
--color=marker:#2f5134
|
||||
|
||||
--color=prompt:#b42219
|
||||
--color=spinner:#6a6535
|
||||
--color=pointer:#b42219
|
||||
--color=header:#25532e
|
||||
--color=prompt:#b1291f
|
||||
--color=spinner:#686540
|
||||
--color=pointer:#b1291f
|
||||
--color=header:#2f5134
|
||||
|
||||
--color=border:#caced5
|
||||
--color=label:#aeaeae
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#161616
|
||||
--color=bg+:#222222
|
||||
|
||||
--color=hl:#557ecc
|
||||
--color=hl+:#799ee3
|
||||
--color=info:#888346
|
||||
--color=marker:#6eb178
|
||||
--color=hl:#507dd4
|
||||
--color=hl+:#709df0
|
||||
--color=info:#868256
|
||||
--color=marker:#7aad81
|
||||
|
||||
--color=prompt:#dc4234
|
||||
--color=spinner:#888346
|
||||
--color=pointer:#dc4234
|
||||
--color=header:#6eb178
|
||||
--color=prompt:#d7473a
|
||||
--color=spinner:#868256
|
||||
--color=pointer:#d7473a
|
||||
--color=header:#7aad81
|
||||
|
||||
--color=border:#222222
|
||||
--color=label:#aeaeae
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#eeeeee
|
||||
--color=bg+:#dedede
|
||||
|
||||
--color=hl:#456fbe
|
||||
--color=hl+:#2d5299
|
||||
--color=info:#79743d
|
||||
--color=marker:#2e6337
|
||||
--color=hl:#436ec1
|
||||
--color=hl+:#2e5297
|
||||
--color=info:#77744b
|
||||
--color=marker:#3a603f
|
||||
|
||||
--color=prompt:#ca2f24
|
||||
--color=spinner:#79743d
|
||||
--color=pointer:#ca2f24
|
||||
--color=header:#2e6337
|
||||
--color=prompt:#c5372b
|
||||
--color=spinner:#77744b
|
||||
--color=pointer:#c5372b
|
||||
--color=header:#3a603f
|
||||
|
||||
--color=border:#dedede
|
||||
--color=label:#aeaeae
|
||||
23
app-config/fzf/hard-badlands-monobiome-dark.active.theme
Normal file
23
app-config/fzf/hard-badlands-monobiome-dark.active.theme
Normal file
@@ -0,0 +1,23 @@
|
||||
export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=fg:#d5cbca
|
||||
--color=fg+:#c5bbba
|
||||
--color=bg:#1b1413
|
||||
--color=bg+:#27201f
|
||||
|
||||
--color=hl:#507dd4
|
||||
--color=hl+:#709df0
|
||||
--color=info:#868256
|
||||
--color=marker:#7aad81
|
||||
|
||||
--color=prompt:#d7473a
|
||||
--color=spinner:#868256
|
||||
--color=pointer:#d7473a
|
||||
--color=header:#7aad81
|
||||
|
||||
--color=border:#27201f
|
||||
--color=label:#aeaeae
|
||||
--color=query:#d5cbca
|
||||
|
||||
--preview-window="border-bold" --prompt="> " --marker=">" --pointer="◆"
|
||||
--separator="" --scrollbar="│"'
|
||||
|
||||
23
app-config/fzf/hard-badlands-monobiome-light.active.theme
Normal file
23
app-config/fzf/hard-badlands-monobiome-light.active.theme
Normal file
@@ -0,0 +1,23 @@
|
||||
export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=fg:#332c2b
|
||||
--color=fg+:#403837
|
||||
--color=bg:#f6ecea
|
||||
--color=bg+:#e5dbda
|
||||
|
||||
--color=hl:#436ec1
|
||||
--color=hl+:#2e5297
|
||||
--color=info:#77744b
|
||||
--color=marker:#3a603f
|
||||
|
||||
--color=prompt:#c5372b
|
||||
--color=spinner:#77744b
|
||||
--color=pointer:#c5372b
|
||||
--color=header:#3a603f
|
||||
|
||||
--color=border:#e5dbda
|
||||
--color=label:#aeaeae
|
||||
--color=query:#332c2b
|
||||
|
||||
--preview-window="border-bold" --prompt="> " --marker=">" --pointer="◆"
|
||||
--separator="" --scrollbar="│"'
|
||||
|
||||
23
app-config/fzf/hard-chaparral-monobiome-dark.active.theme
Normal file
23
app-config/fzf/hard-chaparral-monobiome-dark.active.theme
Normal file
@@ -0,0 +1,23 @@
|
||||
export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=fg:#d3ccc7
|
||||
--color=fg+:#c3bcb7
|
||||
--color=bg:#1a1511
|
||||
--color=bg+:#26211c
|
||||
|
||||
--color=hl:#507dd4
|
||||
--color=hl+:#709df0
|
||||
--color=info:#868256
|
||||
--color=marker:#7aad81
|
||||
|
||||
--color=prompt:#d7473a
|
||||
--color=spinner:#868256
|
||||
--color=pointer:#d7473a
|
||||
--color=header:#7aad81
|
||||
|
||||
--color=border:#26211c
|
||||
--color=label:#aeaeae
|
||||
--color=query:#d3ccc7
|
||||
|
||||
--preview-window="border-bold" --prompt="> " --marker=">" --pointer="◆"
|
||||
--separator="" --scrollbar="│"'
|
||||
|
||||
23
app-config/fzf/hard-chaparral-monobiome-light.active.theme
Normal file
23
app-config/fzf/hard-chaparral-monobiome-light.active.theme
Normal file
@@ -0,0 +1,23 @@
|
||||
export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=fg:#322d28
|
||||
--color=fg+:#3f3935
|
||||
--color=bg:#f4ede7
|
||||
--color=bg+:#e4ddd7
|
||||
|
||||
--color=hl:#436ec1
|
||||
--color=hl+:#2e5297
|
||||
--color=info:#77744b
|
||||
--color=marker:#3a603f
|
||||
|
||||
--color=prompt:#c5372b
|
||||
--color=spinner:#77744b
|
||||
--color=pointer:#c5372b
|
||||
--color=header:#3a603f
|
||||
|
||||
--color=border:#e4ddd7
|
||||
--color=label:#aeaeae
|
||||
--color=query:#322d28
|
||||
|
||||
--preview-window="border-bold" --prompt="> " --marker=">" --pointer="◆"
|
||||
--separator="" --scrollbar="│"'
|
||||
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#131713
|
||||
--color=bg+:#1e231f
|
||||
|
||||
--color=hl:#557ecc
|
||||
--color=hl+:#799ee3
|
||||
--color=info:#888346
|
||||
--color=marker:#6eb178
|
||||
--color=hl:#507dd4
|
||||
--color=hl+:#709df0
|
||||
--color=info:#868256
|
||||
--color=marker:#7aad81
|
||||
|
||||
--color=prompt:#dc4234
|
||||
--color=spinner:#888346
|
||||
--color=pointer:#dc4234
|
||||
--color=header:#6eb178
|
||||
--color=prompt:#d7473a
|
||||
--color=spinner:#868256
|
||||
--color=pointer:#d7473a
|
||||
--color=header:#7aad81
|
||||
|
||||
--color=border:#1e231f
|
||||
--color=label:#aeaeae
|
||||
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#eaf1ea
|
||||
--color=bg+:#d9e0da
|
||||
|
||||
--color=hl:#456fbe
|
||||
--color=hl+:#2d5299
|
||||
--color=info:#79743d
|
||||
--color=marker:#2e6337
|
||||
--color=hl:#436ec1
|
||||
--color=hl+:#2e5297
|
||||
--color=info:#77744b
|
||||
--color=marker:#3a603f
|
||||
|
||||
--color=prompt:#ca2f24
|
||||
--color=spinner:#79743d
|
||||
--color=pointer:#ca2f24
|
||||
--color=header:#2e6337
|
||||
--color=prompt:#c5372b
|
||||
--color=spinner:#77744b
|
||||
--color=pointer:#c5372b
|
||||
--color=header:#3a603f
|
||||
|
||||
--color=border:#d9e0da
|
||||
--color=label:#aeaeae
|
||||
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#171611
|
||||
--color=bg+:#22221c
|
||||
|
||||
--color=hl:#557ecc
|
||||
--color=hl+:#799ee3
|
||||
--color=info:#888346
|
||||
--color=marker:#6eb178
|
||||
--color=hl:#507dd4
|
||||
--color=hl+:#709df0
|
||||
--color=info:#868256
|
||||
--color=marker:#7aad81
|
||||
|
||||
--color=prompt:#dc4234
|
||||
--color=spinner:#888346
|
||||
--color=pointer:#dc4234
|
||||
--color=header:#6eb178
|
||||
--color=prompt:#d7473a
|
||||
--color=spinner:#868256
|
||||
--color=pointer:#d7473a
|
||||
--color=header:#7aad81
|
||||
|
||||
--color=border:#22221c
|
||||
--color=label:#aeaeae
|
||||
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#efefe7
|
||||
--color=bg+:#dfded6
|
||||
|
||||
--color=hl:#456fbe
|
||||
--color=hl+:#2d5299
|
||||
--color=info:#79743d
|
||||
--color=marker:#2e6337
|
||||
--color=hl:#436ec1
|
||||
--color=hl+:#2e5297
|
||||
--color=info:#77744b
|
||||
--color=marker:#3a603f
|
||||
|
||||
--color=prompt:#ca2f24
|
||||
--color=spinner:#79743d
|
||||
--color=pointer:#ca2f24
|
||||
--color=header:#2e6337
|
||||
--color=prompt:#c5372b
|
||||
--color=spinner:#77744b
|
||||
--color=pointer:#c5372b
|
||||
--color=header:#3a603f
|
||||
|
||||
--color=border:#dfded6
|
||||
--color=label:#aeaeae
|
||||
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#13161b
|
||||
--color=bg+:#1f2227
|
||||
|
||||
--color=hl:#557ecc
|
||||
--color=hl+:#799ee3
|
||||
--color=info:#888346
|
||||
--color=marker:#6eb178
|
||||
--color=hl:#507dd4
|
||||
--color=hl+:#709df0
|
||||
--color=info:#868256
|
||||
--color=marker:#7aad81
|
||||
|
||||
--color=prompt:#dc4234
|
||||
--color=spinner:#888346
|
||||
--color=pointer:#dc4234
|
||||
--color=header:#6eb178
|
||||
--color=prompt:#d7473a
|
||||
--color=spinner:#868256
|
||||
--color=pointer:#d7473a
|
||||
--color=header:#7aad81
|
||||
|
||||
--color=border:#1f2227
|
||||
--color=label:#aeaeae
|
||||
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#eaeff6
|
||||
--color=bg+:#dadee6
|
||||
|
||||
--color=hl:#456fbe
|
||||
--color=hl+:#2d5299
|
||||
--color=info:#79743d
|
||||
--color=marker:#2e6337
|
||||
--color=hl:#436ec1
|
||||
--color=hl+:#2e5297
|
||||
--color=info:#77744b
|
||||
--color=marker:#3a603f
|
||||
|
||||
--color=prompt:#ca2f24
|
||||
--color=spinner:#79743d
|
||||
--color=pointer:#ca2f24
|
||||
--color=header:#2e6337
|
||||
--color=prompt:#c5372b
|
||||
--color=spinner:#77744b
|
||||
--color=pointer:#c5372b
|
||||
--color=header:#3a603f
|
||||
|
||||
--color=border:#dadee6
|
||||
--color=label:#aeaeae
|
||||
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#2e2e2e
|
||||
--color=bg+:#3a3a3a
|
||||
|
||||
--color=hl:#799ee3
|
||||
--color=hl+:#a2bef2
|
||||
--color=info:#a7a15f
|
||||
--color=marker:#94cf9c
|
||||
--color=hl:#709df0
|
||||
--color=hl+:#9bbefe
|
||||
--color=info:#a5a172
|
||||
--color=marker:#a2caa6
|
||||
|
||||
--color=prompt:#f37060
|
||||
--color=spinner:#a7a15f
|
||||
--color=pointer:#f37060
|
||||
--color=header:#94cf9c
|
||||
--color=prompt:#f27262
|
||||
--color=spinner:#a5a172
|
||||
--color=pointer:#f27262
|
||||
--color=header:#a2caa6
|
||||
|
||||
--color=border:#3a3a3a
|
||||
--color=label:#aeaeae
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#cecece
|
||||
--color=bg+:#bebebe
|
||||
|
||||
--color=hl:#2d5299
|
||||
--color=hl+:#1a3771
|
||||
--color=info:#5b572e
|
||||
--color=marker:#1c4524
|
||||
--color=hl:#2e5297
|
||||
--color=hl+:#1d386c
|
||||
--color=info:#5a5736
|
||||
--color=marker:#26422a
|
||||
|
||||
--color=prompt:#9d1a13
|
||||
--color=spinner:#5b572e
|
||||
--color=pointer:#9d1a13
|
||||
--color=header:#1c4524
|
||||
--color=prompt:#9b1e16
|
||||
--color=spinner:#5a5736
|
||||
--color=pointer:#9b1e16
|
||||
--color=header:#26422a
|
||||
|
||||
--color=border:#bebebe
|
||||
--color=label:#aeaeae
|
||||
23
app-config/fzf/soft-badlands-monobiome-dark.active.theme
Normal file
23
app-config/fzf/soft-badlands-monobiome-dark.active.theme
Normal file
@@ -0,0 +1,23 @@
|
||||
export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=fg:#f6ecea
|
||||
--color=fg+:#e5dbda
|
||||
--color=bg:#332c2b
|
||||
--color=bg+:#403837
|
||||
|
||||
--color=hl:#709df0
|
||||
--color=hl+:#9bbefe
|
||||
--color=info:#a5a172
|
||||
--color=marker:#a2caa6
|
||||
|
||||
--color=prompt:#f27262
|
||||
--color=spinner:#a5a172
|
||||
--color=pointer:#f27262
|
||||
--color=header:#a2caa6
|
||||
|
||||
--color=border:#403837
|
||||
--color=label:#aeaeae
|
||||
--color=query:#f6ecea
|
||||
|
||||
--preview-window="border-bold" --prompt="> " --marker=">" --pointer="◆"
|
||||
--separator="" --scrollbar="│"'
|
||||
|
||||
23
app-config/fzf/soft-badlands-monobiome-light.active.theme
Normal file
23
app-config/fzf/soft-badlands-monobiome-light.active.theme
Normal file
@@ -0,0 +1,23 @@
|
||||
export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=fg:#1b1413
|
||||
--color=fg+:#27201f
|
||||
--color=bg:#d5cbca
|
||||
--color=bg+:#c5bbba
|
||||
|
||||
--color=hl:#2e5297
|
||||
--color=hl+:#1d386c
|
||||
--color=info:#5a5736
|
||||
--color=marker:#26422a
|
||||
|
||||
--color=prompt:#9b1e16
|
||||
--color=spinner:#5a5736
|
||||
--color=pointer:#9b1e16
|
||||
--color=header:#26422a
|
||||
|
||||
--color=border:#c5bbba
|
||||
--color=label:#aeaeae
|
||||
--color=query:#1b1413
|
||||
|
||||
--preview-window="border-bold" --prompt="> " --marker=">" --pointer="◆"
|
||||
--separator="" --scrollbar="│"'
|
||||
|
||||
23
app-config/fzf/soft-chaparral-monobiome-dark.active.theme
Normal file
23
app-config/fzf/soft-chaparral-monobiome-dark.active.theme
Normal file
@@ -0,0 +1,23 @@
|
||||
export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=fg:#f4ede7
|
||||
--color=fg+:#e4ddd7
|
||||
--color=bg:#322d28
|
||||
--color=bg+:#3f3935
|
||||
|
||||
--color=hl:#709df0
|
||||
--color=hl+:#9bbefe
|
||||
--color=info:#a5a172
|
||||
--color=marker:#a2caa6
|
||||
|
||||
--color=prompt:#f27262
|
||||
--color=spinner:#a5a172
|
||||
--color=pointer:#f27262
|
||||
--color=header:#a2caa6
|
||||
|
||||
--color=border:#3f3935
|
||||
--color=label:#aeaeae
|
||||
--color=query:#f4ede7
|
||||
|
||||
--preview-window="border-bold" --prompt="> " --marker=">" --pointer="◆"
|
||||
--separator="" --scrollbar="│"'
|
||||
|
||||
23
app-config/fzf/soft-chaparral-monobiome-light.active.theme
Normal file
23
app-config/fzf/soft-chaparral-monobiome-light.active.theme
Normal file
@@ -0,0 +1,23 @@
|
||||
export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=fg:#1a1511
|
||||
--color=fg+:#26211c
|
||||
--color=bg:#d3ccc7
|
||||
--color=bg+:#c3bcb7
|
||||
|
||||
--color=hl:#2e5297
|
||||
--color=hl+:#1d386c
|
||||
--color=info:#5a5736
|
||||
--color=marker:#26422a
|
||||
|
||||
--color=prompt:#9b1e16
|
||||
--color=spinner:#5a5736
|
||||
--color=pointer:#9b1e16
|
||||
--color=header:#26422a
|
||||
|
||||
--color=border:#c3bcb7
|
||||
--color=label:#aeaeae
|
||||
--color=query:#1a1511
|
||||
|
||||
--preview-window="border-bold" --prompt="> " --marker=">" --pointer="◆"
|
||||
--separator="" --scrollbar="│"'
|
||||
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#2a2f2b
|
||||
--color=bg+:#373c37
|
||||
|
||||
--color=hl:#799ee3
|
||||
--color=hl+:#a2bef2
|
||||
--color=info:#a7a15f
|
||||
--color=marker:#94cf9c
|
||||
--color=hl:#709df0
|
||||
--color=hl+:#9bbefe
|
||||
--color=info:#a5a172
|
||||
--color=marker:#a2caa6
|
||||
|
||||
--color=prompt:#f37060
|
||||
--color=spinner:#a7a15f
|
||||
--color=pointer:#f37060
|
||||
--color=header:#94cf9c
|
||||
--color=prompt:#f27262
|
||||
--color=spinner:#a5a172
|
||||
--color=pointer:#f27262
|
||||
--color=header:#a2caa6
|
||||
|
||||
--color=border:#373c37
|
||||
--color=label:#aeaeae
|
||||
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#c9d0ca
|
||||
--color=bg+:#b9c0ba
|
||||
|
||||
--color=hl:#2d5299
|
||||
--color=hl+:#1a3771
|
||||
--color=info:#5b572e
|
||||
--color=marker:#1c4524
|
||||
--color=hl:#2e5297
|
||||
--color=hl+:#1d386c
|
||||
--color=info:#5a5736
|
||||
--color=marker:#26422a
|
||||
|
||||
--color=prompt:#9d1a13
|
||||
--color=spinner:#5b572e
|
||||
--color=pointer:#9d1a13
|
||||
--color=header:#1c4524
|
||||
--color=prompt:#9b1e16
|
||||
--color=spinner:#5a5736
|
||||
--color=pointer:#9b1e16
|
||||
--color=header:#26422a
|
||||
|
||||
--color=border:#b9c0ba
|
||||
--color=label:#aeaeae
|
||||
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#2f2e28
|
||||
--color=bg+:#3b3b34
|
||||
|
||||
--color=hl:#799ee3
|
||||
--color=hl+:#a2bef2
|
||||
--color=info:#a7a15f
|
||||
--color=marker:#94cf9c
|
||||
--color=hl:#709df0
|
||||
--color=hl+:#9bbefe
|
||||
--color=info:#a5a172
|
||||
--color=marker:#a2caa6
|
||||
|
||||
--color=prompt:#f37060
|
||||
--color=spinner:#a7a15f
|
||||
--color=pointer:#f37060
|
||||
--color=header:#94cf9c
|
||||
--color=prompt:#f27262
|
||||
--color=spinner:#a5a172
|
||||
--color=pointer:#f27262
|
||||
--color=header:#a2caa6
|
||||
|
||||
--color=border:#3b3b34
|
||||
--color=label:#aeaeae
|
||||
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#cfcec6
|
||||
--color=bg+:#bfbeb6
|
||||
|
||||
--color=hl:#2d5299
|
||||
--color=hl+:#1a3771
|
||||
--color=info:#5b572e
|
||||
--color=marker:#1c4524
|
||||
--color=hl:#2e5297
|
||||
--color=hl+:#1d386c
|
||||
--color=info:#5a5736
|
||||
--color=marker:#26422a
|
||||
|
||||
--color=prompt:#9d1a13
|
||||
--color=spinner:#5b572e
|
||||
--color=pointer:#9d1a13
|
||||
--color=header:#1c4524
|
||||
--color=prompt:#9b1e16
|
||||
--color=spinner:#5a5736
|
||||
--color=pointer:#9b1e16
|
||||
--color=header:#26422a
|
||||
|
||||
--color=border:#bfbeb6
|
||||
--color=label:#aeaeae
|
||||
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#2b2e33
|
||||
--color=bg+:#373b40
|
||||
|
||||
--color=hl:#799ee3
|
||||
--color=hl+:#a2bef2
|
||||
--color=info:#a7a15f
|
||||
--color=marker:#94cf9c
|
||||
--color=hl:#709df0
|
||||
--color=hl+:#9bbefe
|
||||
--color=info:#a5a172
|
||||
--color=marker:#a2caa6
|
||||
|
||||
--color=prompt:#f37060
|
||||
--color=spinner:#a7a15f
|
||||
--color=pointer:#f37060
|
||||
--color=header:#94cf9c
|
||||
--color=prompt:#f27262
|
||||
--color=spinner:#a5a172
|
||||
--color=pointer:#f27262
|
||||
--color=header:#a2caa6
|
||||
|
||||
--color=border:#373b40
|
||||
--color=label:#aeaeae
|
||||
|
||||
@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
|
||||
--color=bg:#caced5
|
||||
--color=bg+:#babec5
|
||||
|
||||
--color=hl:#2d5299
|
||||
--color=hl+:#1a3771
|
||||
--color=info:#5b572e
|
||||
--color=marker:#1c4524
|
||||
--color=hl:#2e5297
|
||||
--color=hl+:#1d386c
|
||||
--color=info:#5a5736
|
||||
--color=marker:#26422a
|
||||
|
||||
--color=prompt:#9d1a13
|
||||
--color=spinner:#5b572e
|
||||
--color=pointer:#9d1a13
|
||||
--color=header:#1c4524
|
||||
--color=prompt:#9b1e16
|
||||
--color=spinner:#5a5736
|
||||
--color=pointer:#9b1e16
|
||||
--color=header:#26422a
|
||||
|
||||
--color=border:#babec5
|
||||
--color=label:#aeaeae
|
||||
|
||||
@@ -1,41 +0,0 @@
|
||||
# base settings
|
||||
background #27201f
|
||||
foreground #e5dbda
|
||||
|
||||
selection_background #332c2b
|
||||
selection_foreground #d5cbca
|
||||
|
||||
cursor #d5cbca
|
||||
cursor_text #332c2b
|
||||
|
||||
# black
|
||||
color0 #27201f
|
||||
color8 #403837
|
||||
|
||||
# red
|
||||
color1 #e95949
|
||||
color9 #fa897a
|
||||
|
||||
# green
|
||||
color2 #5da268
|
||||
color10 #80c089
|
||||
|
||||
# yellow
|
||||
color3 #989250
|
||||
color11 #b7b170
|
||||
|
||||
# blue
|
||||
color4 #658ed9
|
||||
color12 #8daeeb
|
||||
|
||||
# magenta (red)
|
||||
color5 #c97920
|
||||
color13 #e79a51
|
||||
|
||||
# cyan (blue)
|
||||
color6 #658ed9
|
||||
color14 #8daeeb
|
||||
|
||||
## white
|
||||
color7 #c5bbba
|
||||
color15 #e5dbda
|
||||
@@ -1,41 +0,0 @@
|
||||
# base settings
|
||||
background #e5dbda
|
||||
foreground #27201f
|
||||
|
||||
selection_background #d5cbca
|
||||
selection_foreground #332c2b
|
||||
|
||||
cursor #332c2b
|
||||
cursor_text #d5cbca
|
||||
|
||||
# black
|
||||
color0 #e5dbda
|
||||
color8 #c5bbba
|
||||
|
||||
# red
|
||||
color1 #b42219
|
||||
color9 #85160f
|
||||
|
||||
# green
|
||||
color2 #377242
|
||||
color10 #25532e
|
||||
|
||||
# yellow
|
||||
color3 #6a6535
|
||||
color11 #4c4928
|
||||
|
||||
# blue
|
||||
color4 #3860ac
|
||||
color12 #234485
|
||||
|
||||
# magenta (red)
|
||||
color5 #905201
|
||||
color13 #673c0c
|
||||
|
||||
# cyan (blue)
|
||||
color6 #3860ac
|
||||
color14 #234485
|
||||
|
||||
## white
|
||||
color7 #403837
|
||||
color15 #27201f
|
||||
@@ -1,41 +0,0 @@
|
||||
# base settings
|
||||
background #26211c
|
||||
foreground #e4ddd7
|
||||
|
||||
selection_background #322d28
|
||||
selection_foreground #d3ccc7
|
||||
|
||||
cursor #d3ccc7
|
||||
cursor_text #322d28
|
||||
|
||||
# black
|
||||
color0 #26211c
|
||||
color8 #3f3935
|
||||
|
||||
# red
|
||||
color1 #e95949
|
||||
color9 #fa897a
|
||||
|
||||
# green
|
||||
color2 #5da268
|
||||
color10 #80c089
|
||||
|
||||
# yellow
|
||||
color3 #989250
|
||||
color11 #b7b170
|
||||
|
||||
# blue
|
||||
color4 #658ed9
|
||||
color12 #8daeeb
|
||||
|
||||
# magenta (red)
|
||||
color5 #c97920
|
||||
color13 #e79a51
|
||||
|
||||
# cyan (blue)
|
||||
color6 #658ed9
|
||||
color14 #8daeeb
|
||||
|
||||
## white
|
||||
color7 #c3bcb7
|
||||
color15 #e4ddd7
|
||||
@@ -13,28 +13,28 @@ color0 #222222
|
||||
color8 #3a3a3a
|
||||
|
||||
# red
|
||||
color1 #e95949
|
||||
color9 #fa897a
|
||||
color1 #e65b4c
|
||||
color9 #fa8979
|
||||
|
||||
# green
|
||||
color2 #5da268
|
||||
color10 #80c089
|
||||
color2 #6a9e71
|
||||
color10 #8dbc93
|
||||
|
||||
# yellow
|
||||
color3 #989250
|
||||
color11 #b7b170
|
||||
color3 #959263
|
||||
color11 #b4b084
|
||||
|
||||
# blue
|
||||
color4 #658ed9
|
||||
color12 #8daeeb
|
||||
color4 #5f8de4
|
||||
color12 #85aef9
|
||||
|
||||
# magenta (red)
|
||||
color5 #c97920
|
||||
color13 #e79a51
|
||||
color5 #c07e3f
|
||||
color13 #daa06c
|
||||
|
||||
# cyan (blue)
|
||||
color6 #658ed9
|
||||
color14 #8daeeb
|
||||
color6 #5f8de4
|
||||
color14 #85aef9
|
||||
|
||||
## white
|
||||
color7 #bebebe
|
||||
@@ -13,28 +13,28 @@ color0 #dedede
|
||||
color8 #bebebe
|
||||
|
||||
# red
|
||||
color1 #b42219
|
||||
color9 #85160f
|
||||
color1 #b1291f
|
||||
color9 #85150f
|
||||
|
||||
# green
|
||||
color2 #377242
|
||||
color10 #25532e
|
||||
color2 #446f4b
|
||||
color10 #2f5134
|
||||
|
||||
# yellow
|
||||
color3 #6a6535
|
||||
color11 #4c4928
|
||||
color3 #686540
|
||||
color11 #4b492c
|
||||
|
||||
# blue
|
||||
color4 #3860ac
|
||||
color12 #234485
|
||||
color4 #3860ad
|
||||
color12 #254582
|
||||
|
||||
# magenta (red)
|
||||
color5 #905201
|
||||
color13 #673c0c
|
||||
color5 #8b551b
|
||||
color13 #673c0e
|
||||
|
||||
# cyan (blue)
|
||||
color6 #3860ac
|
||||
color14 #234485
|
||||
color6 #3860ad
|
||||
color14 #254582
|
||||
|
||||
## white
|
||||
color7 #3a3a3a
|
||||
@@ -13,28 +13,28 @@ color0 #27201f
|
||||
color8 #403837
|
||||
|
||||
# red
|
||||
color1 #e95949
|
||||
color9 #fa897a
|
||||
color1 #e65b4c
|
||||
color9 #fa8979
|
||||
|
||||
# green
|
||||
color2 #5da268
|
||||
color10 #80c089
|
||||
color2 #6a9e71
|
||||
color10 #8dbc93
|
||||
|
||||
# yellow
|
||||
color3 #989250
|
||||
color11 #b7b170
|
||||
color3 #959263
|
||||
color11 #b4b084
|
||||
|
||||
# blue
|
||||
color4 #658ed9
|
||||
color12 #8daeeb
|
||||
color4 #5f8de4
|
||||
color12 #85aef9
|
||||
|
||||
# magenta (red)
|
||||
color5 #c97920
|
||||
color13 #e79a51
|
||||
color5 #c07e3f
|
||||
color13 #daa06c
|
||||
|
||||
# cyan (blue)
|
||||
color6 #658ed9
|
||||
color14 #8daeeb
|
||||
color6 #5f8de4
|
||||
color14 #85aef9
|
||||
|
||||
## white
|
||||
color7 #c5bbba
|
||||
@@ -13,28 +13,28 @@ color0 #e5dbda
|
||||
color8 #c5bbba
|
||||
|
||||
# red
|
||||
color1 #b42219
|
||||
color9 #85160f
|
||||
color1 #b1291f
|
||||
color9 #85150f
|
||||
|
||||
# green
|
||||
color2 #377242
|
||||
color10 #25532e
|
||||
color2 #446f4b
|
||||
color10 #2f5134
|
||||
|
||||
# yellow
|
||||
color3 #6a6535
|
||||
color11 #4c4928
|
||||
color3 #686540
|
||||
color11 #4b492c
|
||||
|
||||
# blue
|
||||
color4 #3860ac
|
||||
color12 #234485
|
||||
color4 #3860ad
|
||||
color12 #254582
|
||||
|
||||
# magenta (red)
|
||||
color5 #905201
|
||||
color13 #673c0c
|
||||
color5 #8b551b
|
||||
color13 #673c0e
|
||||
|
||||
# cyan (blue)
|
||||
color6 #3860ac
|
||||
color14 #234485
|
||||
color6 #3860ad
|
||||
color14 #254582
|
||||
|
||||
## white
|
||||
color7 #403837
|
||||
@@ -13,28 +13,28 @@ color0 #26211c
|
||||
color8 #3f3935
|
||||
|
||||
# red
|
||||
color1 #e95949
|
||||
color9 #fa897a
|
||||
color1 #e65b4c
|
||||
color9 #fa8979
|
||||
|
||||
# green
|
||||
color2 #5da268
|
||||
color10 #80c089
|
||||
color2 #6a9e71
|
||||
color10 #8dbc93
|
||||
|
||||
# yellow
|
||||
color3 #989250
|
||||
color11 #b7b170
|
||||
color3 #959263
|
||||
color11 #b4b084
|
||||
|
||||
# blue
|
||||
color4 #658ed9
|
||||
color12 #8daeeb
|
||||
color4 #5f8de4
|
||||
color12 #85aef9
|
||||
|
||||
# magenta (red)
|
||||
color5 #c97920
|
||||
color13 #e79a51
|
||||
color5 #c07e3f
|
||||
color13 #daa06c
|
||||
|
||||
# cyan (blue)
|
||||
color6 #658ed9
|
||||
color14 #8daeeb
|
||||
color6 #5f8de4
|
||||
color14 #85aef9
|
||||
|
||||
## white
|
||||
color7 #c3bcb7
|
||||
@@ -13,28 +13,28 @@ color0 #e4ddd7
|
||||
color8 #c3bcb7
|
||||
|
||||
# red
|
||||
color1 #b42219
|
||||
color9 #85160f
|
||||
color1 #b1291f
|
||||
color9 #85150f
|
||||
|
||||
# green
|
||||
color2 #377242
|
||||
color10 #25532e
|
||||
color2 #446f4b
|
||||
color10 #2f5134
|
||||
|
||||
# yellow
|
||||
color3 #6a6535
|
||||
color11 #4c4928
|
||||
color3 #686540
|
||||
color11 #4b492c
|
||||
|
||||
# blue
|
||||
color4 #3860ac
|
||||
color12 #234485
|
||||
color4 #3860ad
|
||||
color12 #254582
|
||||
|
||||
# magenta (red)
|
||||
color5 #905201
|
||||
color13 #673c0c
|
||||
color5 #8b551b
|
||||
color13 #673c0e
|
||||
|
||||
# cyan (blue)
|
||||
color6 #3860ac
|
||||
color14 #234485
|
||||
color6 #3860ad
|
||||
color14 #254582
|
||||
|
||||
## white
|
||||
color7 #3f3935
|
||||
@@ -13,28 +13,28 @@ color0 #1e231f
|
||||
color8 #373c37
|
||||
|
||||
# red
|
||||
color1 #e95949
|
||||
color9 #fa897a
|
||||
color1 #e65b4c
|
||||
color9 #fa8979
|
||||
|
||||
# green
|
||||
color2 #5da268
|
||||
color10 #80c089
|
||||
color2 #6a9e71
|
||||
color10 #8dbc93
|
||||
|
||||
# yellow
|
||||
color3 #989250
|
||||
color11 #b7b170
|
||||
color3 #959263
|
||||
color11 #b4b084
|
||||
|
||||
# blue
|
||||
color4 #658ed9
|
||||
color12 #8daeeb
|
||||
color4 #5f8de4
|
||||
color12 #85aef9
|
||||
|
||||
# magenta (red)
|
||||
color5 #c97920
|
||||
color13 #e79a51
|
||||
color5 #c07e3f
|
||||
color13 #daa06c
|
||||
|
||||
# cyan (blue)
|
||||
color6 #658ed9
|
||||
color14 #8daeeb
|
||||
color6 #5f8de4
|
||||
color14 #85aef9
|
||||
|
||||
## white
|
||||
color7 #b9c0ba
|
||||
@@ -13,28 +13,28 @@ color0 #d9e0da
|
||||
color8 #b9c0ba
|
||||
|
||||
# red
|
||||
color1 #b42219
|
||||
color9 #85160f
|
||||
color1 #b1291f
|
||||
color9 #85150f
|
||||
|
||||
# green
|
||||
color2 #377242
|
||||
color10 #25532e
|
||||
color2 #446f4b
|
||||
color10 #2f5134
|
||||
|
||||
# yellow
|
||||
color3 #6a6535
|
||||
color11 #4c4928
|
||||
color3 #686540
|
||||
color11 #4b492c
|
||||
|
||||
# blue
|
||||
color4 #3860ac
|
||||
color12 #234485
|
||||
color4 #3860ad
|
||||
color12 #254582
|
||||
|
||||
# magenta (red)
|
||||
color5 #905201
|
||||
color13 #673c0c
|
||||
color5 #8b551b
|
||||
color13 #673c0e
|
||||
|
||||
# cyan (blue)
|
||||
color6 #3860ac
|
||||
color14 #234485
|
||||
color6 #3860ad
|
||||
color14 #254582
|
||||
|
||||
## white
|
||||
color7 #373c37
|
||||
@@ -13,28 +13,28 @@ color0 #22221c
|
||||
color8 #3b3b34
|
||||
|
||||
# red
|
||||
color1 #e95949
|
||||
color9 #fa897a
|
||||
color1 #e65b4c
|
||||
color9 #fa8979
|
||||
|
||||
# green
|
||||
color2 #5da268
|
||||
color10 #80c089
|
||||
color2 #6a9e71
|
||||
color10 #8dbc93
|
||||
|
||||
# yellow
|
||||
color3 #989250
|
||||
color11 #b7b170
|
||||
color3 #959263
|
||||
color11 #b4b084
|
||||
|
||||
# blue
|
||||
color4 #658ed9
|
||||
color12 #8daeeb
|
||||
color4 #5f8de4
|
||||
color12 #85aef9
|
||||
|
||||
# magenta (red)
|
||||
color5 #c97920
|
||||
color13 #e79a51
|
||||
color5 #c07e3f
|
||||
color13 #daa06c
|
||||
|
||||
# cyan (blue)
|
||||
color6 #658ed9
|
||||
color14 #8daeeb
|
||||
color6 #5f8de4
|
||||
color14 #85aef9
|
||||
|
||||
## white
|
||||
color7 #bfbeb6
|
||||
@@ -13,28 +13,28 @@ color0 #dfded6
|
||||
color8 #bfbeb6
|
||||
|
||||
# red
|
||||
color1 #b42219
|
||||
color9 #85160f
|
||||
color1 #b1291f
|
||||
color9 #85150f
|
||||
|
||||
# green
|
||||
color2 #377242
|
||||
color10 #25532e
|
||||
color2 #446f4b
|
||||
color10 #2f5134
|
||||
|
||||
# yellow
|
||||
color3 #6a6535
|
||||
color11 #4c4928
|
||||
color3 #686540
|
||||
color11 #4b492c
|
||||
|
||||
# blue
|
||||
color4 #3860ac
|
||||
color12 #234485
|
||||
color4 #3860ad
|
||||
color12 #254582
|
||||
|
||||
# magenta (red)
|
||||
color5 #905201
|
||||
color13 #673c0c
|
||||
color5 #8b551b
|
||||
color13 #673c0e
|
||||
|
||||
# cyan (blue)
|
||||
color6 #3860ac
|
||||
color14 #234485
|
||||
color6 #3860ad
|
||||
color14 #254582
|
||||
|
||||
## white
|
||||
color7 #3b3b34
|
||||
@@ -13,28 +13,28 @@ color0 #1f2227
|
||||
color8 #373b40
|
||||
|
||||
# red
|
||||
color1 #e95949
|
||||
color9 #fa897a
|
||||
color1 #e65b4c
|
||||
color9 #fa8979
|
||||
|
||||
# green
|
||||
color2 #5da268
|
||||
color10 #80c089
|
||||
color2 #6a9e71
|
||||
color10 #8dbc93
|
||||
|
||||
# yellow
|
||||
color3 #989250
|
||||
color11 #b7b170
|
||||
color3 #959263
|
||||
color11 #b4b084
|
||||
|
||||
# blue
|
||||
color4 #658ed9
|
||||
color12 #8daeeb
|
||||
color4 #5f8de4
|
||||
color12 #85aef9
|
||||
|
||||
# magenta (red)
|
||||
color5 #c97920
|
||||
color13 #e79a51
|
||||
color5 #c07e3f
|
||||
color13 #daa06c
|
||||
|
||||
# cyan (blue)
|
||||
color6 #658ed9
|
||||
color14 #8daeeb
|
||||
color6 #5f8de4
|
||||
color14 #85aef9
|
||||
|
||||
## white
|
||||
color7 #babec5
|
||||
@@ -13,28 +13,28 @@ color0 #dadee6
|
||||
color8 #babec5
|
||||
|
||||
# red
|
||||
color1 #b42219
|
||||
color9 #85160f
|
||||
color1 #b1291f
|
||||
color9 #85150f
|
||||
|
||||
# green
|
||||
color2 #377242
|
||||
color10 #25532e
|
||||
color2 #446f4b
|
||||
color10 #2f5134
|
||||
|
||||
# yellow
|
||||
color3 #6a6535
|
||||
color11 #4c4928
|
||||
color3 #686540
|
||||
color11 #4b492c
|
||||
|
||||
# blue
|
||||
color4 #3860ac
|
||||
color12 #234485
|
||||
color4 #3860ad
|
||||
color12 #254582
|
||||
|
||||
# magenta (red)
|
||||
color5 #905201
|
||||
color13 #673c0c
|
||||
color5 #8b551b
|
||||
color13 #673c0e
|
||||
|
||||
# cyan (blue)
|
||||
color6 #3860ac
|
||||
color14 #234485
|
||||
color6 #3860ad
|
||||
color14 #254582
|
||||
|
||||
## white
|
||||
color7 #373b40
|
||||
@@ -13,28 +13,28 @@ color0 #161616
|
||||
color8 #2e2e2e
|
||||
|
||||
# red
|
||||
color1 #dc4234
|
||||
color9 #f37060
|
||||
color1 #d7473a
|
||||
color9 #f27262
|
||||
|
||||
# green
|
||||
color2 #4f925a
|
||||
color10 #6eb178
|
||||
color2 #5c8e63
|
||||
color10 #7aad81
|
||||
|
||||
# yellow
|
||||
color3 #888346
|
||||
color11 #a7a15f
|
||||
color3 #868256
|
||||
color11 #a5a172
|
||||
|
||||
# blue
|
||||
color4 #557ecc
|
||||
color12 #799ee3
|
||||
color4 #507dd4
|
||||
color12 #709df0
|
||||
|
||||
# magenta (red)
|
||||
color5 #b76b0c
|
||||
color13 #d98937
|
||||
color5 #af7030
|
||||
color13 #ce8f53
|
||||
|
||||
# cyan (blue)
|
||||
color6 #557ecc
|
||||
color14 #799ee3
|
||||
color6 #507dd4
|
||||
color14 #709df0
|
||||
|
||||
## white
|
||||
color7 #aeaeae
|
||||
@@ -13,28 +13,28 @@ color0 #eeeeee
|
||||
color8 #cecece
|
||||
|
||||
# red
|
||||
color1 #ca2f24
|
||||
color9 #9d1a13
|
||||
color1 #c5372b
|
||||
color9 #9b1e16
|
||||
|
||||
# green
|
||||
color2 #42824e
|
||||
color10 #2e6337
|
||||
color2 #507f56
|
||||
color10 #3a603f
|
||||
|
||||
# yellow
|
||||
color3 #79743d
|
||||
color11 #5b572e
|
||||
color3 #77744b
|
||||
color11 #5a5736
|
||||
|
||||
# blue
|
||||
color4 #456fbe
|
||||
color12 #2d5299
|
||||
color4 #436ec1
|
||||
color12 #2e5297
|
||||
|
||||
# magenta (red)
|
||||
color5 #a45e03
|
||||
color13 #7c4706
|
||||
color5 #9d6224
|
||||
color13 #794814
|
||||
|
||||
# cyan (blue)
|
||||
color6 #456fbe
|
||||
color14 #2d5299
|
||||
color6 #436ec1
|
||||
color14 #2e5297
|
||||
|
||||
## white
|
||||
color7 #484848
|
||||
41
app-config/kitty/hard-badlands-monobiome-dark.active.theme
Normal file
41
app-config/kitty/hard-badlands-monobiome-dark.active.theme
Normal file
@@ -0,0 +1,41 @@
|
||||
# base settings
|
||||
background #1b1413
|
||||
foreground #d5cbca
|
||||
|
||||
selection_background #27201f
|
||||
selection_foreground #c5bbba
|
||||
|
||||
cursor #c5bbba
|
||||
cursor_text #27201f
|
||||
|
||||
# black
|
||||
color0 #1b1413
|
||||
color8 #332c2b
|
||||
|
||||
# red
|
||||
color1 #d7473a
|
||||
color9 #f27262
|
||||
|
||||
# green
|
||||
color2 #5c8e63
|
||||
color10 #7aad81
|
||||
|
||||
# yellow
|
||||
color3 #868256
|
||||
color11 #a5a172
|
||||
|
||||
# blue
|
||||
color4 #507dd4
|
||||
color12 #709df0
|
||||
|
||||
# magenta (red)
|
||||
color5 #af7030
|
||||
color13 #ce8f53
|
||||
|
||||
# cyan (blue)
|
||||
color6 #507dd4
|
||||
color14 #709df0
|
||||
|
||||
## white
|
||||
color7 #b5abaa
|
||||
color15 #d5cbca
|
||||
41
app-config/kitty/hard-badlands-monobiome-light.active.theme
Normal file
41
app-config/kitty/hard-badlands-monobiome-light.active.theme
Normal file
@@ -0,0 +1,41 @@
|
||||
# base settings
|
||||
background #f6ecea
|
||||
foreground #332c2b
|
||||
|
||||
selection_background #e5dbda
|
||||
selection_foreground #403837
|
||||
|
||||
cursor #403837
|
||||
cursor_text #e5dbda
|
||||
|
||||
# black
|
||||
color0 #f6ecea
|
||||
color8 #d5cbca
|
||||
|
||||
# red
|
||||
color1 #c5372b
|
||||
color9 #9b1e16
|
||||
|
||||
# green
|
||||
color2 #507f56
|
||||
color10 #3a603f
|
||||
|
||||
# yellow
|
||||
color3 #77744b
|
||||
color11 #5a5736
|
||||
|
||||
# blue
|
||||
color4 #436ec1
|
||||
color12 #2e5297
|
||||
|
||||
# magenta (red)
|
||||
color5 #9d6224
|
||||
color13 #794814
|
||||
|
||||
# cyan (blue)
|
||||
color6 #436ec1
|
||||
color14 #2e5297
|
||||
|
||||
## white
|
||||
color7 #4d4644
|
||||
color15 #332c2b
|
||||
41
app-config/kitty/hard-chaparral-monobiome-dark.active.theme
Normal file
41
app-config/kitty/hard-chaparral-monobiome-dark.active.theme
Normal file
@@ -0,0 +1,41 @@
|
||||
# base settings
|
||||
background #1a1511
|
||||
foreground #d3ccc7
|
||||
|
||||
selection_background #26211c
|
||||
selection_foreground #c3bcb7
|
||||
|
||||
cursor #c3bcb7
|
||||
cursor_text #26211c
|
||||
|
||||
# black
|
||||
color0 #1a1511
|
||||
color8 #322d28
|
||||
|
||||
# red
|
||||
color1 #d7473a
|
||||
color9 #f27262
|
||||
|
||||
# green
|
||||
color2 #5c8e63
|
||||
color10 #7aad81
|
||||
|
||||
# yellow
|
||||
color3 #868256
|
||||
color11 #a5a172
|
||||
|
||||
# blue
|
||||
color4 #507dd4
|
||||
color12 #709df0
|
||||
|
||||
# magenta (red)
|
||||
color5 #af7030
|
||||
color13 #ce8f53
|
||||
|
||||
# cyan (blue)
|
||||
color6 #507dd4
|
||||
color14 #709df0
|
||||
|
||||
## white
|
||||
color7 #b3ada7
|
||||
color15 #d3ccc7
|
||||
41
app-config/kitty/hard-chaparral-monobiome-light.active.theme
Normal file
41
app-config/kitty/hard-chaparral-monobiome-light.active.theme
Normal file
@@ -0,0 +1,41 @@
|
||||
# base settings
|
||||
background #f4ede7
|
||||
foreground #322d28
|
||||
|
||||
selection_background #e4ddd7
|
||||
selection_foreground #3f3935
|
||||
|
||||
cursor #3f3935
|
||||
cursor_text #e4ddd7
|
||||
|
||||
# black
|
||||
color0 #f4ede7
|
||||
color8 #d3ccc7
|
||||
|
||||
# red
|
||||
color1 #c5372b
|
||||
color9 #9b1e16
|
||||
|
||||
# green
|
||||
color2 #507f56
|
||||
color10 #3a603f
|
||||
|
||||
# yellow
|
||||
color3 #77744b
|
||||
color11 #5a5736
|
||||
|
||||
# blue
|
||||
color4 #436ec1
|
||||
color12 #2e5297
|
||||
|
||||
# magenta (red)
|
||||
color5 #9d6224
|
||||
color13 #794814
|
||||
|
||||
# cyan (blue)
|
||||
color6 #436ec1
|
||||
color14 #2e5297
|
||||
|
||||
## white
|
||||
color7 #4c4642
|
||||
color15 #322d28
|
||||
@@ -13,28 +13,28 @@ color0 #131713
|
||||
color8 #2a2f2b
|
||||
|
||||
# red
|
||||
color1 #dc4234
|
||||
color9 #f37060
|
||||
color1 #d7473a
|
||||
color9 #f27262
|
||||
|
||||
# green
|
||||
color2 #4f925a
|
||||
color10 #6eb178
|
||||
color2 #5c8e63
|
||||
color10 #7aad81
|
||||
|
||||
# yellow
|
||||
color3 #888346
|
||||
color11 #a7a15f
|
||||
color3 #868256
|
||||
color11 #a5a172
|
||||
|
||||
# blue
|
||||
color4 #557ecc
|
||||
color12 #799ee3
|
||||
color4 #507dd4
|
||||
color12 #709df0
|
||||
|
||||
# magenta (red)
|
||||
color5 #b76b0c
|
||||
color13 #d98937
|
||||
color5 #af7030
|
||||
color13 #ce8f53
|
||||
|
||||
# cyan (blue)
|
||||
color6 #557ecc
|
||||
color14 #799ee3
|
||||
color6 #507dd4
|
||||
color14 #709df0
|
||||
|
||||
## white
|
||||
color7 #a9b0aa
|
||||
|
||||
@@ -13,28 +13,28 @@ color0 #eaf1ea
|
||||
color8 #c9d0ca
|
||||
|
||||
# red
|
||||
color1 #ca2f24
|
||||
color9 #9d1a13
|
||||
color1 #c5372b
|
||||
color9 #9b1e16
|
||||
|
||||
# green
|
||||
color2 #42824e
|
||||
color10 #2e6337
|
||||
color2 #507f56
|
||||
color10 #3a603f
|
||||
|
||||
# yellow
|
||||
color3 #79743d
|
||||
color11 #5b572e
|
||||
color3 #77744b
|
||||
color11 #5a5736
|
||||
|
||||
# blue
|
||||
color4 #456fbe
|
||||
color12 #2d5299
|
||||
color4 #436ec1
|
||||
color12 #2e5297
|
||||
|
||||
# magenta (red)
|
||||
color5 #a45e03
|
||||
color13 #7c4706
|
||||
color5 #9d6224
|
||||
color13 #794814
|
||||
|
||||
# cyan (blue)
|
||||
color6 #456fbe
|
||||
color14 #2d5299
|
||||
color6 #436ec1
|
||||
color14 #2e5297
|
||||
|
||||
## white
|
||||
color7 #444944
|
||||
|
||||
@@ -13,28 +13,28 @@ color0 #171611
|
||||
color8 #2f2e28
|
||||
|
||||
# red
|
||||
color1 #dc4234
|
||||
color9 #f37060
|
||||
color1 #d7473a
|
||||
color9 #f27262
|
||||
|
||||
# green
|
||||
color2 #4f925a
|
||||
color10 #6eb178
|
||||
color2 #5c8e63
|
||||
color10 #7aad81
|
||||
|
||||
# yellow
|
||||
color3 #888346
|
||||
color11 #a7a15f
|
||||
color3 #868256
|
||||
color11 #a5a172
|
||||
|
||||
# blue
|
||||
color4 #557ecc
|
||||
color12 #799ee3
|
||||
color4 #507dd4
|
||||
color12 #709df0
|
||||
|
||||
# magenta (red)
|
||||
color5 #b76b0c
|
||||
color13 #d98937
|
||||
color5 #af7030
|
||||
color13 #ce8f53
|
||||
|
||||
# cyan (blue)
|
||||
color6 #557ecc
|
||||
color14 #799ee3
|
||||
color6 #507dd4
|
||||
color14 #709df0
|
||||
|
||||
## white
|
||||
color7 #afaea7
|
||||
|
||||
@@ -13,28 +13,28 @@ color0 #efefe7
|
||||
color8 #cfcec6
|
||||
|
||||
# red
|
||||
color1 #ca2f24
|
||||
color9 #9d1a13
|
||||
color1 #c5372b
|
||||
color9 #9b1e16
|
||||
|
||||
# green
|
||||
color2 #42824e
|
||||
color10 #2e6337
|
||||
color2 #507f56
|
||||
color10 #3a603f
|
||||
|
||||
# yellow
|
||||
color3 #79743d
|
||||
color11 #5b572e
|
||||
color3 #77744b
|
||||
color11 #5a5736
|
||||
|
||||
# blue
|
||||
color4 #456fbe
|
||||
color12 #2d5299
|
||||
color4 #436ec1
|
||||
color12 #2e5297
|
||||
|
||||
# magenta (red)
|
||||
color5 #a45e03
|
||||
color13 #7c4706
|
||||
color5 #9d6224
|
||||
color13 #794814
|
||||
|
||||
# cyan (blue)
|
||||
color6 #456fbe
|
||||
color14 #2d5299
|
||||
color6 #436ec1
|
||||
color14 #2e5297
|
||||
|
||||
## white
|
||||
color7 #484841
|
||||
|
||||
@@ -13,28 +13,28 @@ color0 #13161b
|
||||
color8 #2b2e33
|
||||
|
||||
# red
|
||||
color1 #dc4234
|
||||
color9 #f37060
|
||||
color1 #d7473a
|
||||
color9 #f27262
|
||||
|
||||
# green
|
||||
color2 #4f925a
|
||||
color10 #6eb178
|
||||
color2 #5c8e63
|
||||
color10 #7aad81
|
||||
|
||||
# yellow
|
||||
color3 #888346
|
||||
color11 #a7a15f
|
||||
color3 #868256
|
||||
color11 #a5a172
|
||||
|
||||
# blue
|
||||
color4 #557ecc
|
||||
color12 #799ee3
|
||||
color4 #507dd4
|
||||
color12 #709df0
|
||||
|
||||
# magenta (red)
|
||||
color5 #b76b0c
|
||||
color13 #d98937
|
||||
color5 #af7030
|
||||
color13 #ce8f53
|
||||
|
||||
# cyan (blue)
|
||||
color6 #557ecc
|
||||
color14 #799ee3
|
||||
color6 #507dd4
|
||||
color14 #709df0
|
||||
|
||||
## white
|
||||
color7 #aaaeb5
|
||||
|
||||
@@ -13,28 +13,28 @@ color0 #eaeff6
|
||||
color8 #caced5
|
||||
|
||||
# red
|
||||
color1 #ca2f24
|
||||
color9 #9d1a13
|
||||
color1 #c5372b
|
||||
color9 #9b1e16
|
||||
|
||||
# green
|
||||
color2 #42824e
|
||||
color10 #2e6337
|
||||
color2 #507f56
|
||||
color10 #3a603f
|
||||
|
||||
# yellow
|
||||
color3 #79743d
|
||||
color11 #5b572e
|
||||
color3 #77744b
|
||||
color11 #5a5736
|
||||
|
||||
# blue
|
||||
color4 #456fbe
|
||||
color12 #2d5299
|
||||
color4 #436ec1
|
||||
color12 #2e5297
|
||||
|
||||
# magenta (red)
|
||||
color5 #a45e03
|
||||
color13 #7c4706
|
||||
color5 #9d6224
|
||||
color13 #794814
|
||||
|
||||
# cyan (blue)
|
||||
color6 #456fbe
|
||||
color14 #2d5299
|
||||
color6 #436ec1
|
||||
color14 #2e5297
|
||||
|
||||
## white
|
||||
color7 #44484e
|
||||
|
||||
@@ -13,28 +13,28 @@ color0 #2e2e2e
|
||||
color8 #484848
|
||||
|
||||
# red
|
||||
color1 #f37060
|
||||
color9 #fea294
|
||||
color1 #f27262
|
||||
color9 #ffa193
|
||||
|
||||
# green
|
||||
color2 #6eb178
|
||||
color10 #94cf9c
|
||||
color2 #7aad81
|
||||
color10 #a2caa6
|
||||
|
||||
# yellow
|
||||
color3 #a7a15f
|
||||
color11 #c6c182
|
||||
color3 #a5a172
|
||||
color11 #c3c099
|
||||
|
||||
# blue
|
||||
color4 #799ee3
|
||||
color12 #a2bef2
|
||||
color4 #709df0
|
||||
color12 #9bbefe
|
||||
|
||||
# magenta (red)
|
||||
color5 #d98937
|
||||
color13 #f1ad6f
|
||||
color5 #ce8f53
|
||||
color13 #e4b387
|
||||
|
||||
# cyan (blue)
|
||||
color6 #799ee3
|
||||
color14 #a2bef2
|
||||
color6 #709df0
|
||||
color14 #9bbefe
|
||||
|
||||
## white
|
||||
color7 #cecece
|
||||
@@ -13,28 +13,28 @@ color0 #cecece
|
||||
color8 #aeaeae
|
||||
|
||||
# red
|
||||
color1 #9d1a13
|
||||
color9 #6e110b
|
||||
color1 #9b1e16
|
||||
color9 #6f0e09
|
||||
|
||||
# green
|
||||
color2 #2e6337
|
||||
color10 #1c4524
|
||||
color2 #3a603f
|
||||
color10 #26422a
|
||||
|
||||
# yellow
|
||||
color3 #5b572e
|
||||
color11 #3e3c20
|
||||
color3 #5a5736
|
||||
color11 #3e3c23
|
||||
|
||||
# blue
|
||||
color4 #2d5299
|
||||
color12 #1a3771
|
||||
color4 #2e5297
|
||||
color12 #1d386c
|
||||
|
||||
# magenta (red)
|
||||
color5 #7c4706
|
||||
color13 #54310d
|
||||
color5 #794814
|
||||
color13 #553109
|
||||
|
||||
# cyan (blue)
|
||||
color6 #2d5299
|
||||
color14 #1a3771
|
||||
color6 #2e5297
|
||||
color14 #1d386c
|
||||
|
||||
## white
|
||||
color7 #2e2e2e
|
||||
41
app-config/kitty/soft-badlands-monobiome-dark.active.theme
Normal file
41
app-config/kitty/soft-badlands-monobiome-dark.active.theme
Normal file
@@ -0,0 +1,41 @@
|
||||
# base settings
|
||||
background #332c2b
|
||||
foreground #f6ecea
|
||||
|
||||
selection_background #403837
|
||||
selection_foreground #e5dbda
|
||||
|
||||
cursor #e5dbda
|
||||
cursor_text #403837
|
||||
|
||||
# black
|
||||
color0 #332c2b
|
||||
color8 #4d4644
|
||||
|
||||
# red
|
||||
color1 #f27262
|
||||
color9 #ffa193
|
||||
|
||||
# green
|
||||
color2 #7aad81
|
||||
color10 #a2caa6
|
||||
|
||||
# yellow
|
||||
color3 #a5a172
|
||||
color11 #c3c099
|
||||
|
||||
# blue
|
||||
color4 #709df0
|
||||
color12 #9bbefe
|
||||
|
||||
# magenta (red)
|
||||
color5 #ce8f53
|
||||
color13 #e4b387
|
||||
|
||||
# cyan (blue)
|
||||
color6 #709df0
|
||||
color14 #9bbefe
|
||||
|
||||
## white
|
||||
color7 #d5cbca
|
||||
color15 #f6ecea
|
||||
41
app-config/kitty/soft-badlands-monobiome-light.active.theme
Normal file
41
app-config/kitty/soft-badlands-monobiome-light.active.theme
Normal file
@@ -0,0 +1,41 @@
|
||||
# base settings
|
||||
background #d5cbca
|
||||
foreground #1b1413
|
||||
|
||||
selection_background #c5bbba
|
||||
selection_foreground #27201f
|
||||
|
||||
cursor #27201f
|
||||
cursor_text #c5bbba
|
||||
|
||||
# black
|
||||
color0 #d5cbca
|
||||
color8 #b5abaa
|
||||
|
||||
# red
|
||||
color1 #9b1e16
|
||||
color9 #6f0e09
|
||||
|
||||
# green
|
||||
color2 #3a603f
|
||||
color10 #26422a
|
||||
|
||||
# yellow
|
||||
color3 #5a5736
|
||||
color11 #3e3c23
|
||||
|
||||
# blue
|
||||
color4 #2e5297
|
||||
color12 #1d386c
|
||||
|
||||
# magenta (red)
|
||||
color5 #794814
|
||||
color13 #553109
|
||||
|
||||
# cyan (blue)
|
||||
color6 #2e5297
|
||||
color14 #1d386c
|
||||
|
||||
## white
|
||||
color7 #332c2b
|
||||
color15 #27201f
|
||||
41
app-config/kitty/soft-chaparral-monobiome-dark.active.theme
Normal file
41
app-config/kitty/soft-chaparral-monobiome-dark.active.theme
Normal file
@@ -0,0 +1,41 @@
|
||||
# base settings
|
||||
background #322d28
|
||||
foreground #f4ede7
|
||||
|
||||
selection_background #3f3935
|
||||
selection_foreground #e4ddd7
|
||||
|
||||
cursor #e4ddd7
|
||||
cursor_text #3f3935
|
||||
|
||||
# black
|
||||
color0 #322d28
|
||||
color8 #4c4642
|
||||
|
||||
# red
|
||||
color1 #f27262
|
||||
color9 #ffa193
|
||||
|
||||
# green
|
||||
color2 #7aad81
|
||||
color10 #a2caa6
|
||||
|
||||
# yellow
|
||||
color3 #a5a172
|
||||
color11 #c3c099
|
||||
|
||||
# blue
|
||||
color4 #709df0
|
||||
color12 #9bbefe
|
||||
|
||||
# magenta (red)
|
||||
color5 #ce8f53
|
||||
color13 #e4b387
|
||||
|
||||
# cyan (blue)
|
||||
color6 #709df0
|
||||
color14 #9bbefe
|
||||
|
||||
## white
|
||||
color7 #d3ccc7
|
||||
color15 #f4ede7
|
||||
41
app-config/kitty/soft-chaparral-monobiome-light.active.theme
Normal file
41
app-config/kitty/soft-chaparral-monobiome-light.active.theme
Normal file
@@ -0,0 +1,41 @@
|
||||
# base settings
|
||||
background #d3ccc7
|
||||
foreground #1a1511
|
||||
|
||||
selection_background #c3bcb7
|
||||
selection_foreground #26211c
|
||||
|
||||
cursor #26211c
|
||||
cursor_text #c3bcb7
|
||||
|
||||
# black
|
||||
color0 #d3ccc7
|
||||
color8 #b3ada7
|
||||
|
||||
# red
|
||||
color1 #9b1e16
|
||||
color9 #6f0e09
|
||||
|
||||
# green
|
||||
color2 #3a603f
|
||||
color10 #26422a
|
||||
|
||||
# yellow
|
||||
color3 #5a5736
|
||||
color11 #3e3c23
|
||||
|
||||
# blue
|
||||
color4 #2e5297
|
||||
color12 #1d386c
|
||||
|
||||
# magenta (red)
|
||||
color5 #794814
|
||||
color13 #553109
|
||||
|
||||
# cyan (blue)
|
||||
color6 #2e5297
|
||||
color14 #1d386c
|
||||
|
||||
## white
|
||||
color7 #322d28
|
||||
color15 #26211c
|
||||
@@ -13,28 +13,28 @@ color0 #2a2f2b
|
||||
color8 #444944
|
||||
|
||||
# red
|
||||
color1 #f37060
|
||||
color9 #fea294
|
||||
color1 #f27262
|
||||
color9 #ffa193
|
||||
|
||||
# green
|
||||
color2 #6eb178
|
||||
color10 #94cf9c
|
||||
color2 #7aad81
|
||||
color10 #a2caa6
|
||||
|
||||
# yellow
|
||||
color3 #a7a15f
|
||||
color11 #c6c182
|
||||
color3 #a5a172
|
||||
color11 #c3c099
|
||||
|
||||
# blue
|
||||
color4 #799ee3
|
||||
color12 #a2bef2
|
||||
color4 #709df0
|
||||
color12 #9bbefe
|
||||
|
||||
# magenta (red)
|
||||
color5 #d98937
|
||||
color13 #f1ad6f
|
||||
color5 #ce8f53
|
||||
color13 #e4b387
|
||||
|
||||
# cyan (blue)
|
||||
color6 #799ee3
|
||||
color14 #a2bef2
|
||||
color6 #709df0
|
||||
color14 #9bbefe
|
||||
|
||||
## white
|
||||
color7 #c9d0ca
|
||||
|
||||
@@ -13,28 +13,28 @@ color0 #c9d0ca
|
||||
color8 #a9b0aa
|
||||
|
||||
# red
|
||||
color1 #9d1a13
|
||||
color9 #6e110b
|
||||
color1 #9b1e16
|
||||
color9 #6f0e09
|
||||
|
||||
# green
|
||||
color2 #2e6337
|
||||
color10 #1c4524
|
||||
color2 #3a603f
|
||||
color10 #26422a
|
||||
|
||||
# yellow
|
||||
color3 #5b572e
|
||||
color11 #3e3c20
|
||||
color3 #5a5736
|
||||
color11 #3e3c23
|
||||
|
||||
# blue
|
||||
color4 #2d5299
|
||||
color12 #1a3771
|
||||
color4 #2e5297
|
||||
color12 #1d386c
|
||||
|
||||
# magenta (red)
|
||||
color5 #7c4706
|
||||
color13 #54310d
|
||||
color5 #794814
|
||||
color13 #553109
|
||||
|
||||
# cyan (blue)
|
||||
color6 #2d5299
|
||||
color14 #1a3771
|
||||
color6 #2e5297
|
||||
color14 #1d386c
|
||||
|
||||
## white
|
||||
color7 #2a2f2b
|
||||
|
||||
@@ -1,41 +0,0 @@
|
||||
# base settings
|
||||
background #cecece
|
||||
foreground #161616
|
||||
|
||||
selection_background #bebebe
|
||||
selection_foreground #222222
|
||||
|
||||
cursor #222222
|
||||
cursor_text #bebebe
|
||||
|
||||
# black
|
||||
color0 #cecece
|
||||
color8 #aeaeae
|
||||
|
||||
# red
|
||||
color1 #9d1a13
|
||||
color9 #6e110b
|
||||
|
||||
# green
|
||||
color2 #2e6337
|
||||
color10 #1c4524
|
||||
|
||||
# yellow
|
||||
color3 #5b572e
|
||||
color11 #3e3c20
|
||||
|
||||
# blue
|
||||
color4 #2d5299
|
||||
color12 #1a3771
|
||||
|
||||
# magenta (red)
|
||||
color5 #7c4706
|
||||
color13 #54310d
|
||||
|
||||
# cyan (blue)
|
||||
color6 #2d5299
|
||||
color14 #1a3771
|
||||
|
||||
## white
|
||||
color7 #2e2e2e
|
||||
color15 #222222
|
||||
@@ -13,28 +13,28 @@ color0 #2f2e28
|
||||
color8 #484841
|
||||
|
||||
# red
|
||||
color1 #f37060
|
||||
color9 #fea294
|
||||
color1 #f27262
|
||||
color9 #ffa193
|
||||
|
||||
# green
|
||||
color2 #6eb178
|
||||
color10 #94cf9c
|
||||
color2 #7aad81
|
||||
color10 #a2caa6
|
||||
|
||||
# yellow
|
||||
color3 #a7a15f
|
||||
color11 #c6c182
|
||||
color3 #a5a172
|
||||
color11 #c3c099
|
||||
|
||||
# blue
|
||||
color4 #799ee3
|
||||
color12 #a2bef2
|
||||
color4 #709df0
|
||||
color12 #9bbefe
|
||||
|
||||
# magenta (red)
|
||||
color5 #d98937
|
||||
color13 #f1ad6f
|
||||
color5 #ce8f53
|
||||
color13 #e4b387
|
||||
|
||||
# cyan (blue)
|
||||
color6 #799ee3
|
||||
color14 #a2bef2
|
||||
color6 #709df0
|
||||
color14 #9bbefe
|
||||
|
||||
## white
|
||||
color7 #cfcec6
|
||||
|
||||
@@ -13,28 +13,28 @@ color0 #cfcec6
|
||||
color8 #afaea7
|
||||
|
||||
# red
|
||||
color1 #9d1a13
|
||||
color9 #6e110b
|
||||
color1 #9b1e16
|
||||
color9 #6f0e09
|
||||
|
||||
# green
|
||||
color2 #2e6337
|
||||
color10 #1c4524
|
||||
color2 #3a603f
|
||||
color10 #26422a
|
||||
|
||||
# yellow
|
||||
color3 #5b572e
|
||||
color11 #3e3c20
|
||||
color3 #5a5736
|
||||
color11 #3e3c23
|
||||
|
||||
# blue
|
||||
color4 #2d5299
|
||||
color12 #1a3771
|
||||
color4 #2e5297
|
||||
color12 #1d386c
|
||||
|
||||
# magenta (red)
|
||||
color5 #7c4706
|
||||
color13 #54310d
|
||||
color5 #794814
|
||||
color13 #553109
|
||||
|
||||
# cyan (blue)
|
||||
color6 #2d5299
|
||||
color14 #1a3771
|
||||
color6 #2e5297
|
||||
color14 #1d386c
|
||||
|
||||
## white
|
||||
color7 #2f2e28
|
||||
|
||||
@@ -13,28 +13,28 @@ color0 #2b2e33
|
||||
color8 #44484e
|
||||
|
||||
# red
|
||||
color1 #f37060
|
||||
color9 #fea294
|
||||
color1 #f27262
|
||||
color9 #ffa193
|
||||
|
||||
# green
|
||||
color2 #6eb178
|
||||
color10 #94cf9c
|
||||
color2 #7aad81
|
||||
color10 #a2caa6
|
||||
|
||||
# yellow
|
||||
color3 #a7a15f
|
||||
color11 #c6c182
|
||||
color3 #a5a172
|
||||
color11 #c3c099
|
||||
|
||||
# blue
|
||||
color4 #799ee3
|
||||
color12 #a2bef2
|
||||
color4 #709df0
|
||||
color12 #9bbefe
|
||||
|
||||
# magenta (red)
|
||||
color5 #d98937
|
||||
color13 #f1ad6f
|
||||
color5 #ce8f53
|
||||
color13 #e4b387
|
||||
|
||||
# cyan (blue)
|
||||
color6 #799ee3
|
||||
color14 #a2bef2
|
||||
color6 #709df0
|
||||
color14 #9bbefe
|
||||
|
||||
## white
|
||||
color7 #caced5
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user