13 Commits
1.1.0 ... 1.2.0

212 changed files with 14052 additions and 2595 deletions

3
.gitignore vendored
View File

@@ -5,6 +5,7 @@ __pycache__/
.ipynb_checkpoints/ .ipynb_checkpoints/
.pytest_cache/ .pytest_cache/
.python-version .python-version
.venv/
# vendor and build files # vendor and build files
dist/ dist/
@@ -14,7 +15,7 @@ docs/_autosummary/
docs/_build/ docs/_build/
# local # local
notebooks/
/Makefile /Makefile
data/ data/
archive/

View File

@@ -86,18 +86,18 @@ reach >4.5 WCAG 2 contrast ratio (the standard requirement for small text on
the web) against all biome monotones for each theme: the web) against all biome monotones for each theme:
+ For BG l20 (harsh, dark) -> l65 is min lightness where all accents have CR + For BG l20 (harsh, dark) -> l65 is min lightness where all accents have CR
>=4.5 4.5
+ For BG l25 (regular, dark) -> l65 is min lightness where all accents have CR + For BG l25 (regular, dark) -> l65 is min lightness where all accents have CR
>=4.5 4.5
+ For BG l30 (soft, dark) -> l70 is min lightness where all accents have CR + For BG l30 (soft, dark) -> l70 is min lightness where all accents have CR
>=4.5 4.5
+ For BG l90 (harsh, dark) -> l45 is max lightness where all accents have CR + For BG l90 (harsh, dark) -> l45 is max lightness where all accents have CR
>=4.5 4.5
+ For BG l85 (regular, dark) -> l45 is min lightness where all accents have CR + For BG l85 (regular, dark) -> l45 is min lightness where all accents have CR
>=4.5 4.5
+ For BG l80 (soft, dark) -> l40 is min lightness where all accents have CR + For BG l80 (soft, dark) -> l40 is min lightness where all accents have CR
>=4.5 4.5
For the monotone boundaries (l15 and l95, neither of which are possible For the monotone boundaries (l15 and l95, neither of which are possible
backgrounds for terminal or nvim in the current theme definitions), the backgrounds for terminal or nvim in the current theme definitions), the
@@ -117,3 +117,76 @@ 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 (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 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 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>

View File

@@ -1,47 +0,0 @@
# Firefox themes
## Default (grays)
![Monobiome dark](images/firefox/monobiome-dark.png)
[_Monobiome dark_][4]
![Monobiome light](images/firefox/monobiome-light.png)
[_Monobiome light_][5]
## Grassland biome
![Grassland monobiome dark](images/firefox/grassland-monobiome-dark.png)
[_Grassland monobiome dark_][6]
![Grassland monobiome light](images/firefox/grassland-monobiome-light.png)
[_Grassland monobiome light_][6]
## Tundra biome
![Tundra monobiome dark](images/firefox/tundra-monobiome-dark.png)
[_Tundra monobiome dark_][8]
![Tundra monobiome light](images/firefox/tundra-monobiome-light.png)
[_Tundra monobiome light_][9]
## Savanna biome
![Savanna monobiome dark](images/firefox/savanna-monobiome-dark.png)
[_Savanna monobiome dark_][10]
![Savanna monobiome light](images/firefox/savanna-monobiome-light.png)
[_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/

View File

@@ -89,54 +89,60 @@ applications.
Each of the files in the `app-config/` directory are named according to Each of the files in the `app-config/` directory are named according to
```sh ```sh
monobiome-<biome>-<mode>-<harshness>.<ext> <harshness>-<biome>-monobiome-<mode>.<ext>
``` ```
For example, `monobiome-tundra-dark-soft.vim` is the Vim theme file for the For example, `monobiome-tundra-dark-soft.vim` is the Vim theme file for the
dark `tundra` variant with the soft harshness level. dark `tundra` variant with the soft harshness level.
## `kitty` ## Applications
Find `kitty` themes in `app-config/kitty`. Themes can be activated in your - `kitty`
`kitty.conf` with
```sh Find `kitty` themes in `app-config/kitty`. Themes can be activated in your
include <theme-file> `kitty.conf` with
```
```sh
include <theme-file>
```
## `vim`/`neovim` Themes are generated using the [`kitty` theme
Find `vim`/`neovim` themes in `app-config/nvim`. Themes can be activated by placing a template](templates/apps/kitty/templates/active.theme).
theme file on Vim's runtime path and setting it in your `.vimrc`/`init.vim`
with
```sh - `vim`/`neovim`
colorscheme <theme-name>
```
## `fzf` Find `vim`/`neovim` themes in `app-config/nvim`. Themes can be activated by placing a
In `app-config/fzf`, you can find scripts that can be ran to export FZF theme theme file on Vim's runtime path and setting it in your `.vimrc`/`init.vim`
variables. In your shell config (e.g., `.bashrc` or `.zshrc`), you can source with
these files to apply them in your terminal:
```sh
colorscheme <theme-name>
```
```sh Themes are generated using the [`vim` theme
source <theme-file> template](templates/apps/nvim/templates/theme.vim).
```
## Firefox - `fzf`
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
`app-config/firefox/`.
![Default monobiome](images/firefox/default-split.png) In `app-config/fzf`, you can find scripts that can be ran to export FZF theme
*Default monobiome* 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>
```
![Grassland monobiome](images/firefox/grassland-split.png) Themes are generated using the [`fzf` theme
*Grassland monobiome* template](templates/apps/fzf/templates/active.theme).
![Tundra monobiome](images/firefox/tundra-split.png) - Firefox
*Tundra monobiome*
![Savanna monobiome](images/firefox/savanna-split.png) Firefox themes for all monotone backgrounds are publicly listed as [Mozilla
*Savanna monobiome* 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).
![Firefox theme previews](images/firefox/themes.png)
# Switching themes # Switching themes
[`symconf`][3] is a general-purpose application config manager that can be used [`symconf`][3] is a general-purpose application config manager that can be used
@@ -196,4 +202,5 @@ biome/harshness/mode. This can be done for any app config file.
[1]: https://github.com/isa/TextMate-Themes/blob/master/monoindustrial.tmTheme [1]: https://github.com/isa/TextMate-Themes/blob/master/monoindustrial.tmTheme
[2]: https://addons.mozilla.org/en-US/firefox/collections/18495484/monobiome/
[3]: https://github.com/ologio/symconf [3]: https://github.com/ologio/symconf

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#222222 --color=bg:#222222
--color=bg+:#2e2e2e --color=bg+:#2e2e2e
--color=hl:#658ed9 --color=hl:#5f8de4
--color=hl+:#8daeeb --color=hl+:#85aef9
--color=info:#989250 --color=info:#959263
--color=marker:#80c089 --color=marker:#8dbc93
--color=prompt:#e95949 --color=prompt:#e65b4c
--color=spinner:#989250 --color=spinner:#959263
--color=pointer:#e95949 --color=pointer:#e65b4c
--color=header:#80c089 --color=header:#8dbc93
--color=border:#2e2e2e --color=border:#2e2e2e
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#dedede --color=bg:#dedede
--color=bg+:#cecece --color=bg+:#cecece
--color=hl:#3860ac --color=hl:#3860ad
--color=hl+:#234485 --color=hl+:#254582
--color=info:#6a6535 --color=info:#686540
--color=marker:#25532e --color=marker:#2f5134
--color=prompt:#b42219 --color=prompt:#b1291f
--color=spinner:#6a6535 --color=spinner:#686540
--color=pointer:#b42219 --color=pointer:#b1291f
--color=header:#25532e --color=header:#2f5134
--color=border:#cecece --color=border:#cecece
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#27201f --color=bg:#27201f
--color=bg+:#332c2b --color=bg+:#332c2b
--color=hl:#658ed9 --color=hl:#5f8de4
--color=hl+:#8daeeb --color=hl+:#85aef9
--color=info:#989250 --color=info:#959263
--color=marker:#80c089 --color=marker:#8dbc93
--color=prompt:#e95949 --color=prompt:#e65b4c
--color=spinner:#989250 --color=spinner:#959263
--color=pointer:#e95949 --color=pointer:#e65b4c
--color=header:#80c089 --color=header:#8dbc93
--color=border:#332c2b --color=border:#332c2b
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#e5dbda --color=bg:#e5dbda
--color=bg+:#d5cbca --color=bg+:#d5cbca
--color=hl:#3860ac --color=hl:#3860ad
--color=hl+:#234485 --color=hl+:#254582
--color=info:#6a6535 --color=info:#686540
--color=marker:#25532e --color=marker:#2f5134
--color=prompt:#b42219 --color=prompt:#b1291f
--color=spinner:#6a6535 --color=spinner:#686540
--color=pointer:#b42219 --color=pointer:#b1291f
--color=header:#25532e --color=header:#2f5134
--color=border:#d5cbca --color=border:#d5cbca
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#26211c --color=bg:#26211c
--color=bg+:#322d28 --color=bg+:#322d28
--color=hl:#658ed9 --color=hl:#5f8de4
--color=hl+:#8daeeb --color=hl+:#85aef9
--color=info:#989250 --color=info:#959263
--color=marker:#80c089 --color=marker:#8dbc93
--color=prompt:#e95949 --color=prompt:#e65b4c
--color=spinner:#989250 --color=spinner:#959263
--color=pointer:#e95949 --color=pointer:#e65b4c
--color=header:#80c089 --color=header:#8dbc93
--color=border:#322d28 --color=border:#322d28
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#e4ddd7 --color=bg:#e4ddd7
--color=bg+:#d3ccc7 --color=bg+:#d3ccc7
--color=hl:#3860ac --color=hl:#3860ad
--color=hl+:#234485 --color=hl+:#254582
--color=info:#6a6535 --color=info:#686540
--color=marker:#25532e --color=marker:#2f5134
--color=prompt:#b42219 --color=prompt:#b1291f
--color=spinner:#6a6535 --color=spinner:#686540
--color=pointer:#b42219 --color=pointer:#b1291f
--color=header:#25532e --color=header:#2f5134
--color=border:#d3ccc7 --color=border:#d3ccc7
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#1e231f --color=bg:#1e231f
--color=bg+:#2a2f2b --color=bg+:#2a2f2b
--color=hl:#658ed9 --color=hl:#5f8de4
--color=hl+:#8daeeb --color=hl+:#85aef9
--color=info:#989250 --color=info:#959263
--color=marker:#80c089 --color=marker:#8dbc93
--color=prompt:#e95949 --color=prompt:#e65b4c
--color=spinner:#989250 --color=spinner:#959263
--color=pointer:#e95949 --color=pointer:#e65b4c
--color=header:#80c089 --color=header:#8dbc93
--color=border:#2a2f2b --color=border:#2a2f2b
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#d9e0da --color=bg:#d9e0da
--color=bg+:#c9d0ca --color=bg+:#c9d0ca
--color=hl:#3860ac --color=hl:#3860ad
--color=hl+:#234485 --color=hl+:#254582
--color=info:#6a6535 --color=info:#686540
--color=marker:#25532e --color=marker:#2f5134
--color=prompt:#b42219 --color=prompt:#b1291f
--color=spinner:#6a6535 --color=spinner:#686540
--color=pointer:#b42219 --color=pointer:#b1291f
--color=header:#25532e --color=header:#2f5134
--color=border:#c9d0ca --color=border:#c9d0ca
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#22221c --color=bg:#22221c
--color=bg+:#2f2e28 --color=bg+:#2f2e28
--color=hl:#658ed9 --color=hl:#5f8de4
--color=hl+:#8daeeb --color=hl+:#85aef9
--color=info:#989250 --color=info:#959263
--color=marker:#80c089 --color=marker:#8dbc93
--color=prompt:#e95949 --color=prompt:#e65b4c
--color=spinner:#989250 --color=spinner:#959263
--color=pointer:#e95949 --color=pointer:#e65b4c
--color=header:#80c089 --color=header:#8dbc93
--color=border:#2f2e28 --color=border:#2f2e28
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#dfded6 --color=bg:#dfded6
--color=bg+:#cfcec6 --color=bg+:#cfcec6
--color=hl:#3860ac --color=hl:#3860ad
--color=hl+:#234485 --color=hl+:#254582
--color=info:#6a6535 --color=info:#686540
--color=marker:#25532e --color=marker:#2f5134
--color=prompt:#b42219 --color=prompt:#b1291f
--color=spinner:#6a6535 --color=spinner:#686540
--color=pointer:#b42219 --color=pointer:#b1291f
--color=header:#25532e --color=header:#2f5134
--color=border:#cfcec6 --color=border:#cfcec6
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#1f2227 --color=bg:#1f2227
--color=bg+:#2b2e33 --color=bg+:#2b2e33
--color=hl:#658ed9 --color=hl:#5f8de4
--color=hl+:#8daeeb --color=hl+:#85aef9
--color=info:#989250 --color=info:#959263
--color=marker:#80c089 --color=marker:#8dbc93
--color=prompt:#e95949 --color=prompt:#e65b4c
--color=spinner:#989250 --color=spinner:#959263
--color=pointer:#e95949 --color=pointer:#e65b4c
--color=header:#80c089 --color=header:#8dbc93
--color=border:#2b2e33 --color=border:#2b2e33
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#dadee6 --color=bg:#dadee6
--color=bg+:#caced5 --color=bg+:#caced5
--color=hl:#3860ac --color=hl:#3860ad
--color=hl+:#234485 --color=hl+:#254582
--color=info:#6a6535 --color=info:#686540
--color=marker:#25532e --color=marker:#2f5134
--color=prompt:#b42219 --color=prompt:#b1291f
--color=spinner:#6a6535 --color=spinner:#686540
--color=pointer:#b42219 --color=pointer:#b1291f
--color=header:#25532e --color=header:#2f5134
--color=border:#caced5 --color=border:#caced5
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#161616 --color=bg:#161616
--color=bg+:#222222 --color=bg+:#222222
--color=hl:#557ecc --color=hl:#507dd4
--color=hl+:#799ee3 --color=hl+:#709df0
--color=info:#888346 --color=info:#868256
--color=marker:#6eb178 --color=marker:#7aad81
--color=prompt:#dc4234 --color=prompt:#d7473a
--color=spinner:#888346 --color=spinner:#868256
--color=pointer:#dc4234 --color=pointer:#d7473a
--color=header:#6eb178 --color=header:#7aad81
--color=border:#222222 --color=border:#222222
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#eeeeee --color=bg:#eeeeee
--color=bg+:#dedede --color=bg+:#dedede
--color=hl:#456fbe --color=hl:#436ec1
--color=hl+:#2d5299 --color=hl+:#2e5297
--color=info:#79743d --color=info:#77744b
--color=marker:#2e6337 --color=marker:#3a603f
--color=prompt:#ca2f24 --color=prompt:#c5372b
--color=spinner:#79743d --color=spinner:#77744b
--color=pointer:#ca2f24 --color=pointer:#c5372b
--color=header:#2e6337 --color=header:#3a603f
--color=border:#dedede --color=border:#dedede
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#1b1413 --color=bg:#1b1413
--color=bg+:#27201f --color=bg+:#27201f
--color=hl:#557ecc --color=hl:#507dd4
--color=hl+:#799ee3 --color=hl+:#709df0
--color=info:#888346 --color=info:#868256
--color=marker:#6eb178 --color=marker:#7aad81
--color=prompt:#dc4234 --color=prompt:#d7473a
--color=spinner:#888346 --color=spinner:#868256
--color=pointer:#dc4234 --color=pointer:#d7473a
--color=header:#6eb178 --color=header:#7aad81
--color=border:#27201f --color=border:#27201f
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#f6ecea --color=bg:#f6ecea
--color=bg+:#e5dbda --color=bg+:#e5dbda
--color=hl:#456fbe --color=hl:#436ec1
--color=hl+:#2d5299 --color=hl+:#2e5297
--color=info:#79743d --color=info:#77744b
--color=marker:#2e6337 --color=marker:#3a603f
--color=prompt:#ca2f24 --color=prompt:#c5372b
--color=spinner:#79743d --color=spinner:#77744b
--color=pointer:#ca2f24 --color=pointer:#c5372b
--color=header:#2e6337 --color=header:#3a603f
--color=border:#e5dbda --color=border:#e5dbda
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#1a1511 --color=bg:#1a1511
--color=bg+:#26211c --color=bg+:#26211c
--color=hl:#557ecc --color=hl:#507dd4
--color=hl+:#799ee3 --color=hl+:#709df0
--color=info:#888346 --color=info:#868256
--color=marker:#6eb178 --color=marker:#7aad81
--color=prompt:#dc4234 --color=prompt:#d7473a
--color=spinner:#888346 --color=spinner:#868256
--color=pointer:#dc4234 --color=pointer:#d7473a
--color=header:#6eb178 --color=header:#7aad81
--color=border:#26211c --color=border:#26211c
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#f4ede7 --color=bg:#f4ede7
--color=bg+:#e4ddd7 --color=bg+:#e4ddd7
--color=hl:#456fbe --color=hl:#436ec1
--color=hl+:#2d5299 --color=hl+:#2e5297
--color=info:#79743d --color=info:#77744b
--color=marker:#2e6337 --color=marker:#3a603f
--color=prompt:#ca2f24 --color=prompt:#c5372b
--color=spinner:#79743d --color=spinner:#77744b
--color=pointer:#ca2f24 --color=pointer:#c5372b
--color=header:#2e6337 --color=header:#3a603f
--color=border:#e4ddd7 --color=border:#e4ddd7
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#131713 --color=bg:#131713
--color=bg+:#1e231f --color=bg+:#1e231f
--color=hl:#557ecc --color=hl:#507dd4
--color=hl+:#799ee3 --color=hl+:#709df0
--color=info:#888346 --color=info:#868256
--color=marker:#6eb178 --color=marker:#7aad81
--color=prompt:#dc4234 --color=prompt:#d7473a
--color=spinner:#888346 --color=spinner:#868256
--color=pointer:#dc4234 --color=pointer:#d7473a
--color=header:#6eb178 --color=header:#7aad81
--color=border:#1e231f --color=border:#1e231f
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#eaf1ea --color=bg:#eaf1ea
--color=bg+:#d9e0da --color=bg+:#d9e0da
--color=hl:#456fbe --color=hl:#436ec1
--color=hl+:#2d5299 --color=hl+:#2e5297
--color=info:#79743d --color=info:#77744b
--color=marker:#2e6337 --color=marker:#3a603f
--color=prompt:#ca2f24 --color=prompt:#c5372b
--color=spinner:#79743d --color=spinner:#77744b
--color=pointer:#ca2f24 --color=pointer:#c5372b
--color=header:#2e6337 --color=header:#3a603f
--color=border:#d9e0da --color=border:#d9e0da
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#171611 --color=bg:#171611
--color=bg+:#22221c --color=bg+:#22221c
--color=hl:#557ecc --color=hl:#507dd4
--color=hl+:#799ee3 --color=hl+:#709df0
--color=info:#888346 --color=info:#868256
--color=marker:#6eb178 --color=marker:#7aad81
--color=prompt:#dc4234 --color=prompt:#d7473a
--color=spinner:#888346 --color=spinner:#868256
--color=pointer:#dc4234 --color=pointer:#d7473a
--color=header:#6eb178 --color=header:#7aad81
--color=border:#22221c --color=border:#22221c
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#efefe7 --color=bg:#efefe7
--color=bg+:#dfded6 --color=bg+:#dfded6
--color=hl:#456fbe --color=hl:#436ec1
--color=hl+:#2d5299 --color=hl+:#2e5297
--color=info:#79743d --color=info:#77744b
--color=marker:#2e6337 --color=marker:#3a603f
--color=prompt:#ca2f24 --color=prompt:#c5372b
--color=spinner:#79743d --color=spinner:#77744b
--color=pointer:#ca2f24 --color=pointer:#c5372b
--color=header:#2e6337 --color=header:#3a603f
--color=border:#dfded6 --color=border:#dfded6
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#13161b --color=bg:#13161b
--color=bg+:#1f2227 --color=bg+:#1f2227
--color=hl:#557ecc --color=hl:#507dd4
--color=hl+:#799ee3 --color=hl+:#709df0
--color=info:#888346 --color=info:#868256
--color=marker:#6eb178 --color=marker:#7aad81
--color=prompt:#dc4234 --color=prompt:#d7473a
--color=spinner:#888346 --color=spinner:#868256
--color=pointer:#dc4234 --color=pointer:#d7473a
--color=header:#6eb178 --color=header:#7aad81
--color=border:#1f2227 --color=border:#1f2227
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#eaeff6 --color=bg:#eaeff6
--color=bg+:#dadee6 --color=bg+:#dadee6
--color=hl:#456fbe --color=hl:#436ec1
--color=hl+:#2d5299 --color=hl+:#2e5297
--color=info:#79743d --color=info:#77744b
--color=marker:#2e6337 --color=marker:#3a603f
--color=prompt:#ca2f24 --color=prompt:#c5372b
--color=spinner:#79743d --color=spinner:#77744b
--color=pointer:#ca2f24 --color=pointer:#c5372b
--color=header:#2e6337 --color=header:#3a603f
--color=border:#dadee6 --color=border:#dadee6
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#2e2e2e --color=bg:#2e2e2e
--color=bg+:#3a3a3a --color=bg+:#3a3a3a
--color=hl:#799ee3 --color=hl:#709df0
--color=hl+:#a2bef2 --color=hl+:#9bbefe
--color=info:#a7a15f --color=info:#a5a172
--color=marker:#94cf9c --color=marker:#a2caa6
--color=prompt:#f37060 --color=prompt:#f27262
--color=spinner:#a7a15f --color=spinner:#a5a172
--color=pointer:#f37060 --color=pointer:#f27262
--color=header:#94cf9c --color=header:#a2caa6
--color=border:#3a3a3a --color=border:#3a3a3a
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#cecece --color=bg:#cecece
--color=bg+:#bebebe --color=bg+:#bebebe
--color=hl:#2d5299 --color=hl:#2e5297
--color=hl+:#1a3771 --color=hl+:#1d386c
--color=info:#5b572e --color=info:#5a5736
--color=marker:#1c4524 --color=marker:#26422a
--color=prompt:#9d1a13 --color=prompt:#9b1e16
--color=spinner:#5b572e --color=spinner:#5a5736
--color=pointer:#9d1a13 --color=pointer:#9b1e16
--color=header:#1c4524 --color=header:#26422a
--color=border:#bebebe --color=border:#bebebe
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#332c2b --color=bg:#332c2b
--color=bg+:#403837 --color=bg+:#403837
--color=hl:#799ee3 --color=hl:#709df0
--color=hl+:#a2bef2 --color=hl+:#9bbefe
--color=info:#a7a15f --color=info:#a5a172
--color=marker:#94cf9c --color=marker:#a2caa6
--color=prompt:#f37060 --color=prompt:#f27262
--color=spinner:#a7a15f --color=spinner:#a5a172
--color=pointer:#f37060 --color=pointer:#f27262
--color=header:#94cf9c --color=header:#a2caa6
--color=border:#403837 --color=border:#403837
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#d5cbca --color=bg:#d5cbca
--color=bg+:#c5bbba --color=bg+:#c5bbba
--color=hl:#2d5299 --color=hl:#2e5297
--color=hl+:#1a3771 --color=hl+:#1d386c
--color=info:#5b572e --color=info:#5a5736
--color=marker:#1c4524 --color=marker:#26422a
--color=prompt:#9d1a13 --color=prompt:#9b1e16
--color=spinner:#5b572e --color=spinner:#5a5736
--color=pointer:#9d1a13 --color=pointer:#9b1e16
--color=header:#1c4524 --color=header:#26422a
--color=border:#c5bbba --color=border:#c5bbba
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#322d28 --color=bg:#322d28
--color=bg+:#3f3935 --color=bg+:#3f3935
--color=hl:#799ee3 --color=hl:#709df0
--color=hl+:#a2bef2 --color=hl+:#9bbefe
--color=info:#a7a15f --color=info:#a5a172
--color=marker:#94cf9c --color=marker:#a2caa6
--color=prompt:#f37060 --color=prompt:#f27262
--color=spinner:#a7a15f --color=spinner:#a5a172
--color=pointer:#f37060 --color=pointer:#f27262
--color=header:#94cf9c --color=header:#a2caa6
--color=border:#3f3935 --color=border:#3f3935
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#d3ccc7 --color=bg:#d3ccc7
--color=bg+:#c3bcb7 --color=bg+:#c3bcb7
--color=hl:#2d5299 --color=hl:#2e5297
--color=hl+:#1a3771 --color=hl+:#1d386c
--color=info:#5b572e --color=info:#5a5736
--color=marker:#1c4524 --color=marker:#26422a
--color=prompt:#9d1a13 --color=prompt:#9b1e16
--color=spinner:#5b572e --color=spinner:#5a5736
--color=pointer:#9d1a13 --color=pointer:#9b1e16
--color=header:#1c4524 --color=header:#26422a
--color=border:#c3bcb7 --color=border:#c3bcb7
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#2a2f2b --color=bg:#2a2f2b
--color=bg+:#373c37 --color=bg+:#373c37
--color=hl:#799ee3 --color=hl:#709df0
--color=hl+:#a2bef2 --color=hl+:#9bbefe
--color=info:#a7a15f --color=info:#a5a172
--color=marker:#94cf9c --color=marker:#a2caa6
--color=prompt:#f37060 --color=prompt:#f27262
--color=spinner:#a7a15f --color=spinner:#a5a172
--color=pointer:#f37060 --color=pointer:#f27262
--color=header:#94cf9c --color=header:#a2caa6
--color=border:#373c37 --color=border:#373c37
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#c9d0ca --color=bg:#c9d0ca
--color=bg+:#b9c0ba --color=bg+:#b9c0ba
--color=hl:#2d5299 --color=hl:#2e5297
--color=hl+:#1a3771 --color=hl+:#1d386c
--color=info:#5b572e --color=info:#5a5736
--color=marker:#1c4524 --color=marker:#26422a
--color=prompt:#9d1a13 --color=prompt:#9b1e16
--color=spinner:#5b572e --color=spinner:#5a5736
--color=pointer:#9d1a13 --color=pointer:#9b1e16
--color=header:#1c4524 --color=header:#26422a
--color=border:#b9c0ba --color=border:#b9c0ba
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#2f2e28 --color=bg:#2f2e28
--color=bg+:#3b3b34 --color=bg+:#3b3b34
--color=hl:#799ee3 --color=hl:#709df0
--color=hl+:#a2bef2 --color=hl+:#9bbefe
--color=info:#a7a15f --color=info:#a5a172
--color=marker:#94cf9c --color=marker:#a2caa6
--color=prompt:#f37060 --color=prompt:#f27262
--color=spinner:#a7a15f --color=spinner:#a5a172
--color=pointer:#f37060 --color=pointer:#f27262
--color=header:#94cf9c --color=header:#a2caa6
--color=border:#3b3b34 --color=border:#3b3b34
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#cfcec6 --color=bg:#cfcec6
--color=bg+:#bfbeb6 --color=bg+:#bfbeb6
--color=hl:#2d5299 --color=hl:#2e5297
--color=hl+:#1a3771 --color=hl+:#1d386c
--color=info:#5b572e --color=info:#5a5736
--color=marker:#1c4524 --color=marker:#26422a
--color=prompt:#9d1a13 --color=prompt:#9b1e16
--color=spinner:#5b572e --color=spinner:#5a5736
--color=pointer:#9d1a13 --color=pointer:#9b1e16
--color=header:#1c4524 --color=header:#26422a
--color=border:#bfbeb6 --color=border:#bfbeb6
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#2b2e33 --color=bg:#2b2e33
--color=bg+:#373b40 --color=bg+:#373b40
--color=hl:#799ee3 --color=hl:#709df0
--color=hl+:#a2bef2 --color=hl+:#9bbefe
--color=info:#a7a15f --color=info:#a5a172
--color=marker:#94cf9c --color=marker:#a2caa6
--color=prompt:#f37060 --color=prompt:#f27262
--color=spinner:#a7a15f --color=spinner:#a5a172
--color=pointer:#f37060 --color=pointer:#f27262
--color=header:#94cf9c --color=header:#a2caa6
--color=border:#373b40 --color=border:#373b40
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -4,15 +4,15 @@ export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=bg:#caced5 --color=bg:#caced5
--color=bg+:#babec5 --color=bg+:#babec5
--color=hl:#2d5299 --color=hl:#2e5297
--color=hl+:#1a3771 --color=hl+:#1d386c
--color=info:#5b572e --color=info:#5a5736
--color=marker:#1c4524 --color=marker:#26422a
--color=prompt:#9d1a13 --color=prompt:#9b1e16
--color=spinner:#5b572e --color=spinner:#5a5736
--color=pointer:#9d1a13 --color=pointer:#9b1e16
--color=header:#1c4524 --color=header:#26422a
--color=border:#babec5 --color=border:#babec5
--color=label:#aeaeae --color=label:#aeaeae

View File

@@ -13,28 +13,28 @@ color0 #222222
color8 #3a3a3a color8 #3a3a3a
# red # red
color1 #e95949 color1 #e65b4c
color9 #fa897a color9 #fa8979
# green # green
color2 #5da268 color2 #6a9e71
color10 #80c089 color10 #8dbc93
# yellow # yellow
color3 #989250 color3 #959263
color11 #b7b170 color11 #b4b084
# blue # blue
color4 #658ed9 color4 #5f8de4
color12 #8daeeb color12 #85aef9
# magenta (red) # magenta (red)
color5 #c97920 color5 #c07e3f
color13 #e79a51 color13 #daa06c
# cyan (blue) # cyan (blue)
color6 #658ed9 color6 #5f8de4
color14 #8daeeb color14 #85aef9
## white ## white
color7 #bebebe color7 #bebebe

View File

@@ -13,28 +13,28 @@ color0 #dedede
color8 #bebebe color8 #bebebe
# red # red
color1 #b42219 color1 #b1291f
color9 #85160f color9 #85150f
# green # green
color2 #377242 color2 #446f4b
color10 #25532e color10 #2f5134
# yellow # yellow
color3 #6a6535 color3 #686540
color11 #4c4928 color11 #4b492c
# blue # blue
color4 #3860ac color4 #3860ad
color12 #234485 color12 #254582
# magenta (red) # magenta (red)
color5 #905201 color5 #8b551b
color13 #673c0c color13 #673c0e
# cyan (blue) # cyan (blue)
color6 #3860ac color6 #3860ad
color14 #234485 color14 #254582
## white ## white
color7 #3a3a3a color7 #3a3a3a

View File

@@ -13,28 +13,28 @@ color0 #27201f
color8 #403837 color8 #403837
# red # red
color1 #e95949 color1 #e65b4c
color9 #fa897a color9 #fa8979
# green # green
color2 #5da268 color2 #6a9e71
color10 #80c089 color10 #8dbc93
# yellow # yellow
color3 #989250 color3 #959263
color11 #b7b170 color11 #b4b084
# blue # blue
color4 #658ed9 color4 #5f8de4
color12 #8daeeb color12 #85aef9
# magenta (red) # magenta (red)
color5 #c97920 color5 #c07e3f
color13 #e79a51 color13 #daa06c
# cyan (blue) # cyan (blue)
color6 #658ed9 color6 #5f8de4
color14 #8daeeb color14 #85aef9
## white ## white
color7 #c5bbba color7 #c5bbba

View File

@@ -13,28 +13,28 @@ color0 #e5dbda
color8 #c5bbba color8 #c5bbba
# red # red
color1 #b42219 color1 #b1291f
color9 #85160f color9 #85150f
# green # green
color2 #377242 color2 #446f4b
color10 #25532e color10 #2f5134
# yellow # yellow
color3 #6a6535 color3 #686540
color11 #4c4928 color11 #4b492c
# blue # blue
color4 #3860ac color4 #3860ad
color12 #234485 color12 #254582
# magenta (red) # magenta (red)
color5 #905201 color5 #8b551b
color13 #673c0c color13 #673c0e
# cyan (blue) # cyan (blue)
color6 #3860ac color6 #3860ad
color14 #234485 color14 #254582
## white ## white
color7 #403837 color7 #403837

View File

@@ -13,28 +13,28 @@ color0 #26211c
color8 #3f3935 color8 #3f3935
# red # red
color1 #e95949 color1 #e65b4c
color9 #fa897a color9 #fa8979
# green # green
color2 #5da268 color2 #6a9e71
color10 #80c089 color10 #8dbc93
# yellow # yellow
color3 #989250 color3 #959263
color11 #b7b170 color11 #b4b084
# blue # blue
color4 #658ed9 color4 #5f8de4
color12 #8daeeb color12 #85aef9
# magenta (red) # magenta (red)
color5 #c97920 color5 #c07e3f
color13 #e79a51 color13 #daa06c
# cyan (blue) # cyan (blue)
color6 #658ed9 color6 #5f8de4
color14 #8daeeb color14 #85aef9
## white ## white
color7 #c3bcb7 color7 #c3bcb7

View File

@@ -13,28 +13,28 @@ color0 #e4ddd7
color8 #c3bcb7 color8 #c3bcb7
# red # red
color1 #b42219 color1 #b1291f
color9 #85160f color9 #85150f
# green # green
color2 #377242 color2 #446f4b
color10 #25532e color10 #2f5134
# yellow # yellow
color3 #6a6535 color3 #686540
color11 #4c4928 color11 #4b492c
# blue # blue
color4 #3860ac color4 #3860ad
color12 #234485 color12 #254582
# magenta (red) # magenta (red)
color5 #905201 color5 #8b551b
color13 #673c0c color13 #673c0e
# cyan (blue) # cyan (blue)
color6 #3860ac color6 #3860ad
color14 #234485 color14 #254582
## white ## white
color7 #3f3935 color7 #3f3935

View File

@@ -13,28 +13,28 @@ color0 #1e231f
color8 #373c37 color8 #373c37
# red # red
color1 #e95949 color1 #e65b4c
color9 #fa897a color9 #fa8979
# green # green
color2 #5da268 color2 #6a9e71
color10 #80c089 color10 #8dbc93
# yellow # yellow
color3 #989250 color3 #959263
color11 #b7b170 color11 #b4b084
# blue # blue
color4 #658ed9 color4 #5f8de4
color12 #8daeeb color12 #85aef9
# magenta (red) # magenta (red)
color5 #c97920 color5 #c07e3f
color13 #e79a51 color13 #daa06c
# cyan (blue) # cyan (blue)
color6 #658ed9 color6 #5f8de4
color14 #8daeeb color14 #85aef9
## white ## white
color7 #b9c0ba color7 #b9c0ba

View File

@@ -13,28 +13,28 @@ color0 #d9e0da
color8 #b9c0ba color8 #b9c0ba
# red # red
color1 #b42219 color1 #b1291f
color9 #85160f color9 #85150f
# green # green
color2 #377242 color2 #446f4b
color10 #25532e color10 #2f5134
# yellow # yellow
color3 #6a6535 color3 #686540
color11 #4c4928 color11 #4b492c
# blue # blue
color4 #3860ac color4 #3860ad
color12 #234485 color12 #254582
# magenta (red) # magenta (red)
color5 #905201 color5 #8b551b
color13 #673c0c color13 #673c0e
# cyan (blue) # cyan (blue)
color6 #3860ac color6 #3860ad
color14 #234485 color14 #254582
## white ## white
color7 #373c37 color7 #373c37

View File

@@ -13,28 +13,28 @@ color0 #22221c
color8 #3b3b34 color8 #3b3b34
# red # red
color1 #e95949 color1 #e65b4c
color9 #fa897a color9 #fa8979
# green # green
color2 #5da268 color2 #6a9e71
color10 #80c089 color10 #8dbc93
# yellow # yellow
color3 #989250 color3 #959263
color11 #b7b170 color11 #b4b084
# blue # blue
color4 #658ed9 color4 #5f8de4
color12 #8daeeb color12 #85aef9
# magenta (red) # magenta (red)
color5 #c97920 color5 #c07e3f
color13 #e79a51 color13 #daa06c
# cyan (blue) # cyan (blue)
color6 #658ed9 color6 #5f8de4
color14 #8daeeb color14 #85aef9
## white ## white
color7 #bfbeb6 color7 #bfbeb6

View File

@@ -13,28 +13,28 @@ color0 #dfded6
color8 #bfbeb6 color8 #bfbeb6
# red # red
color1 #b42219 color1 #b1291f
color9 #85160f color9 #85150f
# green # green
color2 #377242 color2 #446f4b
color10 #25532e color10 #2f5134
# yellow # yellow
color3 #6a6535 color3 #686540
color11 #4c4928 color11 #4b492c
# blue # blue
color4 #3860ac color4 #3860ad
color12 #234485 color12 #254582
# magenta (red) # magenta (red)
color5 #905201 color5 #8b551b
color13 #673c0c color13 #673c0e
# cyan (blue) # cyan (blue)
color6 #3860ac color6 #3860ad
color14 #234485 color14 #254582
## white ## white
color7 #3b3b34 color7 #3b3b34

View File

@@ -13,28 +13,28 @@ color0 #1f2227
color8 #373b40 color8 #373b40
# red # red
color1 #e95949 color1 #e65b4c
color9 #fa897a color9 #fa8979
# green # green
color2 #5da268 color2 #6a9e71
color10 #80c089 color10 #8dbc93
# yellow # yellow
color3 #989250 color3 #959263
color11 #b7b170 color11 #b4b084
# blue # blue
color4 #658ed9 color4 #5f8de4
color12 #8daeeb color12 #85aef9
# magenta (red) # magenta (red)
color5 #c97920 color5 #c07e3f
color13 #e79a51 color13 #daa06c
# cyan (blue) # cyan (blue)
color6 #658ed9 color6 #5f8de4
color14 #8daeeb color14 #85aef9
## white ## white
color7 #babec5 color7 #babec5

View File

@@ -13,28 +13,28 @@ color0 #dadee6
color8 #babec5 color8 #babec5
# red # red
color1 #b42219 color1 #b1291f
color9 #85160f color9 #85150f
# green # green
color2 #377242 color2 #446f4b
color10 #25532e color10 #2f5134
# yellow # yellow
color3 #6a6535 color3 #686540
color11 #4c4928 color11 #4b492c
# blue # blue
color4 #3860ac color4 #3860ad
color12 #234485 color12 #254582
# magenta (red) # magenta (red)
color5 #905201 color5 #8b551b
color13 #673c0c color13 #673c0e
# cyan (blue) # cyan (blue)
color6 #3860ac color6 #3860ad
color14 #234485 color14 #254582
## white ## white
color7 #373b40 color7 #373b40

View File

@@ -13,28 +13,28 @@ color0 #161616
color8 #2e2e2e color8 #2e2e2e
# red # red
color1 #dc4234 color1 #d7473a
color9 #f37060 color9 #f27262
# green # green
color2 #4f925a color2 #5c8e63
color10 #6eb178 color10 #7aad81
# yellow # yellow
color3 #888346 color3 #868256
color11 #a7a15f color11 #a5a172
# blue # blue
color4 #557ecc color4 #507dd4
color12 #799ee3 color12 #709df0
# magenta (red) # magenta (red)
color5 #b76b0c color5 #af7030
color13 #d98937 color13 #ce8f53
# cyan (blue) # cyan (blue)
color6 #557ecc color6 #507dd4
color14 #799ee3 color14 #709df0
## white ## white
color7 #aeaeae color7 #aeaeae

View File

@@ -13,28 +13,28 @@ color0 #eeeeee
color8 #cecece color8 #cecece
# red # red
color1 #ca2f24 color1 #c5372b
color9 #9d1a13 color9 #9b1e16
# green # green
color2 #42824e color2 #507f56
color10 #2e6337 color10 #3a603f
# yellow # yellow
color3 #79743d color3 #77744b
color11 #5b572e color11 #5a5736
# blue # blue
color4 #456fbe color4 #436ec1
color12 #2d5299 color12 #2e5297
# magenta (red) # magenta (red)
color5 #a45e03 color5 #9d6224
color13 #7c4706 color13 #794814
# cyan (blue) # cyan (blue)
color6 #456fbe color6 #436ec1
color14 #2d5299 color14 #2e5297
## white ## white
color7 #484848 color7 #484848

View File

@@ -13,28 +13,28 @@ color0 #1b1413
color8 #332c2b color8 #332c2b
# red # red
color1 #dc4234 color1 #d7473a
color9 #f37060 color9 #f27262
# green # green
color2 #4f925a color2 #5c8e63
color10 #6eb178 color10 #7aad81
# yellow # yellow
color3 #888346 color3 #868256
color11 #a7a15f color11 #a5a172
# blue # blue
color4 #557ecc color4 #507dd4
color12 #799ee3 color12 #709df0
# magenta (red) # magenta (red)
color5 #b76b0c color5 #af7030
color13 #d98937 color13 #ce8f53
# cyan (blue) # cyan (blue)
color6 #557ecc color6 #507dd4
color14 #799ee3 color14 #709df0
## white ## white
color7 #b5abaa color7 #b5abaa

View File

@@ -13,28 +13,28 @@ color0 #f6ecea
color8 #d5cbca color8 #d5cbca
# red # red
color1 #ca2f24 color1 #c5372b
color9 #9d1a13 color9 #9b1e16
# green # green
color2 #42824e color2 #507f56
color10 #2e6337 color10 #3a603f
# yellow # yellow
color3 #79743d color3 #77744b
color11 #5b572e color11 #5a5736
# blue # blue
color4 #456fbe color4 #436ec1
color12 #2d5299 color12 #2e5297
# magenta (red) # magenta (red)
color5 #a45e03 color5 #9d6224
color13 #7c4706 color13 #794814
# cyan (blue) # cyan (blue)
color6 #456fbe color6 #436ec1
color14 #2d5299 color14 #2e5297
## white ## white
color7 #4d4644 color7 #4d4644

View File

@@ -13,28 +13,28 @@ color0 #1a1511
color8 #322d28 color8 #322d28
# red # red
color1 #dc4234 color1 #d7473a
color9 #f37060 color9 #f27262
# green # green
color2 #4f925a color2 #5c8e63
color10 #6eb178 color10 #7aad81
# yellow # yellow
color3 #888346 color3 #868256
color11 #a7a15f color11 #a5a172
# blue # blue
color4 #557ecc color4 #507dd4
color12 #799ee3 color12 #709df0
# magenta (red) # magenta (red)
color5 #b76b0c color5 #af7030
color13 #d98937 color13 #ce8f53
# cyan (blue) # cyan (blue)
color6 #557ecc color6 #507dd4
color14 #799ee3 color14 #709df0
## white ## white
color7 #b3ada7 color7 #b3ada7

View File

@@ -13,28 +13,28 @@ color0 #f4ede7
color8 #d3ccc7 color8 #d3ccc7
# red # red
color1 #ca2f24 color1 #c5372b
color9 #9d1a13 color9 #9b1e16
# green # green
color2 #42824e color2 #507f56
color10 #2e6337 color10 #3a603f
# yellow # yellow
color3 #79743d color3 #77744b
color11 #5b572e color11 #5a5736
# blue # blue
color4 #456fbe color4 #436ec1
color12 #2d5299 color12 #2e5297
# magenta (red) # magenta (red)
color5 #a45e03 color5 #9d6224
color13 #7c4706 color13 #794814
# cyan (blue) # cyan (blue)
color6 #456fbe color6 #436ec1
color14 #2d5299 color14 #2e5297
## white ## white
color7 #4c4642 color7 #4c4642

View File

@@ -13,28 +13,28 @@ color0 #131713
color8 #2a2f2b color8 #2a2f2b
# red # red
color1 #dc4234 color1 #d7473a
color9 #f37060 color9 #f27262
# green # green
color2 #4f925a color2 #5c8e63
color10 #6eb178 color10 #7aad81
# yellow # yellow
color3 #888346 color3 #868256
color11 #a7a15f color11 #a5a172
# blue # blue
color4 #557ecc color4 #507dd4
color12 #799ee3 color12 #709df0
# magenta (red) # magenta (red)
color5 #b76b0c color5 #af7030
color13 #d98937 color13 #ce8f53
# cyan (blue) # cyan (blue)
color6 #557ecc color6 #507dd4
color14 #799ee3 color14 #709df0
## white ## white
color7 #a9b0aa color7 #a9b0aa

View File

@@ -13,28 +13,28 @@ color0 #eaf1ea
color8 #c9d0ca color8 #c9d0ca
# red # red
color1 #ca2f24 color1 #c5372b
color9 #9d1a13 color9 #9b1e16
# green # green
color2 #42824e color2 #507f56
color10 #2e6337 color10 #3a603f
# yellow # yellow
color3 #79743d color3 #77744b
color11 #5b572e color11 #5a5736
# blue # blue
color4 #456fbe color4 #436ec1
color12 #2d5299 color12 #2e5297
# magenta (red) # magenta (red)
color5 #a45e03 color5 #9d6224
color13 #7c4706 color13 #794814
# cyan (blue) # cyan (blue)
color6 #456fbe color6 #436ec1
color14 #2d5299 color14 #2e5297
## white ## white
color7 #444944 color7 #444944

View File

@@ -13,28 +13,28 @@ color0 #171611
color8 #2f2e28 color8 #2f2e28
# red # red
color1 #dc4234 color1 #d7473a
color9 #f37060 color9 #f27262
# green # green
color2 #4f925a color2 #5c8e63
color10 #6eb178 color10 #7aad81
# yellow # yellow
color3 #888346 color3 #868256
color11 #a7a15f color11 #a5a172
# blue # blue
color4 #557ecc color4 #507dd4
color12 #799ee3 color12 #709df0
# magenta (red) # magenta (red)
color5 #b76b0c color5 #af7030
color13 #d98937 color13 #ce8f53
# cyan (blue) # cyan (blue)
color6 #557ecc color6 #507dd4
color14 #799ee3 color14 #709df0
## white ## white
color7 #afaea7 color7 #afaea7

View File

@@ -13,28 +13,28 @@ color0 #efefe7
color8 #cfcec6 color8 #cfcec6
# red # red
color1 #ca2f24 color1 #c5372b
color9 #9d1a13 color9 #9b1e16
# green # green
color2 #42824e color2 #507f56
color10 #2e6337 color10 #3a603f
# yellow # yellow
color3 #79743d color3 #77744b
color11 #5b572e color11 #5a5736
# blue # blue
color4 #456fbe color4 #436ec1
color12 #2d5299 color12 #2e5297
# magenta (red) # magenta (red)
color5 #a45e03 color5 #9d6224
color13 #7c4706 color13 #794814
# cyan (blue) # cyan (blue)
color6 #456fbe color6 #436ec1
color14 #2d5299 color14 #2e5297
## white ## white
color7 #484841 color7 #484841

View File

@@ -13,28 +13,28 @@ color0 #13161b
color8 #2b2e33 color8 #2b2e33
# red # red
color1 #dc4234 color1 #d7473a
color9 #f37060 color9 #f27262
# green # green
color2 #4f925a color2 #5c8e63
color10 #6eb178 color10 #7aad81
# yellow # yellow
color3 #888346 color3 #868256
color11 #a7a15f color11 #a5a172
# blue # blue
color4 #557ecc color4 #507dd4
color12 #799ee3 color12 #709df0
# magenta (red) # magenta (red)
color5 #b76b0c color5 #af7030
color13 #d98937 color13 #ce8f53
# cyan (blue) # cyan (blue)
color6 #557ecc color6 #507dd4
color14 #799ee3 color14 #709df0
## white ## white
color7 #aaaeb5 color7 #aaaeb5

View File

@@ -13,28 +13,28 @@ color0 #eaeff6
color8 #caced5 color8 #caced5
# red # red
color1 #ca2f24 color1 #c5372b
color9 #9d1a13 color9 #9b1e16
# green # green
color2 #42824e color2 #507f56
color10 #2e6337 color10 #3a603f
# yellow # yellow
color3 #79743d color3 #77744b
color11 #5b572e color11 #5a5736
# blue # blue
color4 #456fbe color4 #436ec1
color12 #2d5299 color12 #2e5297
# magenta (red) # magenta (red)
color5 #a45e03 color5 #9d6224
color13 #7c4706 color13 #794814
# cyan (blue) # cyan (blue)
color6 #456fbe color6 #436ec1
color14 #2d5299 color14 #2e5297
## white ## white
color7 #44484e color7 #44484e

View File

@@ -13,28 +13,28 @@ color0 #2e2e2e
color8 #484848 color8 #484848
# red # red
color1 #f37060 color1 #f27262
color9 #fea294 color9 #ffa193
# green # green
color2 #6eb178 color2 #7aad81
color10 #94cf9c color10 #a2caa6
# yellow # yellow
color3 #a7a15f color3 #a5a172
color11 #c6c182 color11 #c3c099
# blue # blue
color4 #799ee3 color4 #709df0
color12 #a2bef2 color12 #9bbefe
# magenta (red) # magenta (red)
color5 #d98937 color5 #ce8f53
color13 #f1ad6f color13 #e4b387
# cyan (blue) # cyan (blue)
color6 #799ee3 color6 #709df0
color14 #a2bef2 color14 #9bbefe
## white ## white
color7 #cecece color7 #cecece

View File

@@ -13,28 +13,28 @@ color0 #cecece
color8 #aeaeae color8 #aeaeae
# red # red
color1 #9d1a13 color1 #9b1e16
color9 #6e110b color9 #6f0e09
# green # green
color2 #2e6337 color2 #3a603f
color10 #1c4524 color10 #26422a
# yellow # yellow
color3 #5b572e color3 #5a5736
color11 #3e3c20 color11 #3e3c23
# blue # blue
color4 #2d5299 color4 #2e5297
color12 #1a3771 color12 #1d386c
# magenta (red) # magenta (red)
color5 #7c4706 color5 #794814
color13 #54310d color13 #553109
# cyan (blue) # cyan (blue)
color6 #2d5299 color6 #2e5297
color14 #1a3771 color14 #1d386c
## white ## white
color7 #2e2e2e color7 #2e2e2e

View File

@@ -13,28 +13,28 @@ color0 #332c2b
color8 #4d4644 color8 #4d4644
# red # red
color1 #f37060 color1 #f27262
color9 #fea294 color9 #ffa193
# green # green
color2 #6eb178 color2 #7aad81
color10 #94cf9c color10 #a2caa6
# yellow # yellow
color3 #a7a15f color3 #a5a172
color11 #c6c182 color11 #c3c099
# blue # blue
color4 #799ee3 color4 #709df0
color12 #a2bef2 color12 #9bbefe
# magenta (red) # magenta (red)
color5 #d98937 color5 #ce8f53
color13 #f1ad6f color13 #e4b387
# cyan (blue) # cyan (blue)
color6 #799ee3 color6 #709df0
color14 #a2bef2 color14 #9bbefe
## white ## white
color7 #d5cbca color7 #d5cbca

View File

@@ -13,28 +13,28 @@ color0 #d5cbca
color8 #b5abaa color8 #b5abaa
# red # red
color1 #9d1a13 color1 #9b1e16
color9 #6e110b color9 #6f0e09
# green # green
color2 #2e6337 color2 #3a603f
color10 #1c4524 color10 #26422a
# yellow # yellow
color3 #5b572e color3 #5a5736
color11 #3e3c20 color11 #3e3c23
# blue # blue
color4 #2d5299 color4 #2e5297
color12 #1a3771 color12 #1d386c
# magenta (red) # magenta (red)
color5 #7c4706 color5 #794814
color13 #54310d color13 #553109
# cyan (blue) # cyan (blue)
color6 #2d5299 color6 #2e5297
color14 #1a3771 color14 #1d386c
## white ## white
color7 #332c2b color7 #332c2b

View File

@@ -13,28 +13,28 @@ color0 #322d28
color8 #4c4642 color8 #4c4642
# red # red
color1 #f37060 color1 #f27262
color9 #fea294 color9 #ffa193
# green # green
color2 #6eb178 color2 #7aad81
color10 #94cf9c color10 #a2caa6
# yellow # yellow
color3 #a7a15f color3 #a5a172
color11 #c6c182 color11 #c3c099
# blue # blue
color4 #799ee3 color4 #709df0
color12 #a2bef2 color12 #9bbefe
# magenta (red) # magenta (red)
color5 #d98937 color5 #ce8f53
color13 #f1ad6f color13 #e4b387
# cyan (blue) # cyan (blue)
color6 #799ee3 color6 #709df0
color14 #a2bef2 color14 #9bbefe
## white ## white
color7 #d3ccc7 color7 #d3ccc7

View File

@@ -13,28 +13,28 @@ color0 #d3ccc7
color8 #b3ada7 color8 #b3ada7
# red # red
color1 #9d1a13 color1 #9b1e16
color9 #6e110b color9 #6f0e09
# green # green
color2 #2e6337 color2 #3a603f
color10 #1c4524 color10 #26422a
# yellow # yellow
color3 #5b572e color3 #5a5736
color11 #3e3c20 color11 #3e3c23
# blue # blue
color4 #2d5299 color4 #2e5297
color12 #1a3771 color12 #1d386c
# magenta (red) # magenta (red)
color5 #7c4706 color5 #794814
color13 #54310d color13 #553109
# cyan (blue) # cyan (blue)
color6 #2d5299 color6 #2e5297
color14 #1a3771 color14 #1d386c
## white ## white
color7 #322d28 color7 #322d28

View File

@@ -13,28 +13,28 @@ color0 #2a2f2b
color8 #444944 color8 #444944
# red # red
color1 #f37060 color1 #f27262
color9 #fea294 color9 #ffa193
# green # green
color2 #6eb178 color2 #7aad81
color10 #94cf9c color10 #a2caa6
# yellow # yellow
color3 #a7a15f color3 #a5a172
color11 #c6c182 color11 #c3c099
# blue # blue
color4 #799ee3 color4 #709df0
color12 #a2bef2 color12 #9bbefe
# magenta (red) # magenta (red)
color5 #d98937 color5 #ce8f53
color13 #f1ad6f color13 #e4b387
# cyan (blue) # cyan (blue)
color6 #799ee3 color6 #709df0
color14 #a2bef2 color14 #9bbefe
## white ## white
color7 #c9d0ca color7 #c9d0ca

View File

@@ -13,28 +13,28 @@ color0 #c9d0ca
color8 #a9b0aa color8 #a9b0aa
# red # red
color1 #9d1a13 color1 #9b1e16
color9 #6e110b color9 #6f0e09
# green # green
color2 #2e6337 color2 #3a603f
color10 #1c4524 color10 #26422a
# yellow # yellow
color3 #5b572e color3 #5a5736
color11 #3e3c20 color11 #3e3c23
# blue # blue
color4 #2d5299 color4 #2e5297
color12 #1a3771 color12 #1d386c
# magenta (red) # magenta (red)
color5 #7c4706 color5 #794814
color13 #54310d color13 #553109
# cyan (blue) # cyan (blue)
color6 #2d5299 color6 #2e5297
color14 #1a3771 color14 #1d386c
## white ## white
color7 #2a2f2b color7 #2a2f2b

View File

@@ -13,28 +13,28 @@ color0 #2f2e28
color8 #484841 color8 #484841
# red # red
color1 #f37060 color1 #f27262
color9 #fea294 color9 #ffa193
# green # green
color2 #6eb178 color2 #7aad81
color10 #94cf9c color10 #a2caa6
# yellow # yellow
color3 #a7a15f color3 #a5a172
color11 #c6c182 color11 #c3c099
# blue # blue
color4 #799ee3 color4 #709df0
color12 #a2bef2 color12 #9bbefe
# magenta (red) # magenta (red)
color5 #d98937 color5 #ce8f53
color13 #f1ad6f color13 #e4b387
# cyan (blue) # cyan (blue)
color6 #799ee3 color6 #709df0
color14 #a2bef2 color14 #9bbefe
## white ## white
color7 #cfcec6 color7 #cfcec6

View File

@@ -13,28 +13,28 @@ color0 #cfcec6
color8 #afaea7 color8 #afaea7
# red # red
color1 #9d1a13 color1 #9b1e16
color9 #6e110b color9 #6f0e09
# green # green
color2 #2e6337 color2 #3a603f
color10 #1c4524 color10 #26422a
# yellow # yellow
color3 #5b572e color3 #5a5736
color11 #3e3c20 color11 #3e3c23
# blue # blue
color4 #2d5299 color4 #2e5297
color12 #1a3771 color12 #1d386c
# magenta (red) # magenta (red)
color5 #7c4706 color5 #794814
color13 #54310d color13 #553109
# cyan (blue) # cyan (blue)
color6 #2d5299 color6 #2e5297
color14 #1a3771 color14 #1d386c
## white ## white
color7 #2f2e28 color7 #2f2e28

View File

@@ -13,28 +13,28 @@ color0 #2b2e33
color8 #44484e color8 #44484e
# red # red
color1 #f37060 color1 #f27262
color9 #fea294 color9 #ffa193
# green # green
color2 #6eb178 color2 #7aad81
color10 #94cf9c color10 #a2caa6
# yellow # yellow
color3 #a7a15f color3 #a5a172
color11 #c6c182 color11 #c3c099
# blue # blue
color4 #799ee3 color4 #709df0
color12 #a2bef2 color12 #9bbefe
# magenta (red) # magenta (red)
color5 #d98937 color5 #ce8f53
color13 #f1ad6f color13 #e4b387
# cyan (blue) # cyan (blue)
color6 #799ee3 color6 #709df0
color14 #a2bef2 color14 #9bbefe
## white ## white
color7 #caced5 color7 #caced5

View File

@@ -13,28 +13,28 @@ color0 #caced5
color8 #aaaeb5 color8 #aaaeb5
# red # red
color1 #9d1a13 color1 #9b1e16
color9 #6e110b color9 #6f0e09
# green # green
color2 #2e6337 color2 #3a603f
color10 #1c4524 color10 #26422a
# yellow # yellow
color3 #5b572e color3 #5a5736
color11 #3e3c20 color11 #3e3c23
# blue # blue
color4 #2d5299 color4 #2e5297
color12 #1a3771 color12 #1d386c
# magenta (red) # magenta (red)
color5 #7c4706 color5 #794814
color13 #54310d color13 #553109
# cyan (blue) # cyan (blue)
color6 #2d5299 color6 #2e5297
color14 #1a3771 color14 #1d386c
## white ## white
color7 #2b2e33 color7 #2b2e33

View File

@@ -47,22 +47,22 @@ let s:gui06 = "#cecece"
let g:base16_gui06 = "#cecece" let g:base16_gui06 = "#cecece"
let s:gui07 = "#dedede" let s:gui07 = "#dedede"
let g:base16_gui07 = "#dedede" let g:base16_gui07 = "#dedede"
let s:gui08 = "#e95949" let s:gui08 = "#e65b4c"
let g:base16_gui08 = "#e95949" let g:base16_gui08 = "#e65b4c"
let s:gui09 = "#c97920" let s:gui09 = "#c07e3f"
let g:base16_gui09 = "#c97920" let g:base16_gui09 = "#c07e3f"
let s:gui0A = "#989250" let s:gui0A = "#959263"
let g:base16_gui0A = "#989250" let g:base16_gui0A = "#959263"
let s:gui0B = "#5da268" let s:gui0B = "#6a9e71"
let g:base16_gui0B = "#5da268" let g:base16_gui0B = "#6a9e71"
let s:gui0C = "#5da268" let s:gui0C = "#6a9e71"
let g:base16_gui0C = "#5da268" let g:base16_gui0C = "#6a9e71"
let s:gui0D = "#658ed9" let s:gui0D = "#5f8de4"
let g:base16_gui0D = "#658ed9" let g:base16_gui0D = "#5f8de4"
let s:gui0E = "#658ed9" let s:gui0E = "#5f8de4"
let g:base16_gui0E = "#658ed9" let g:base16_gui0E = "#5f8de4"
let s:gui0F = "#e95949" let s:gui0F = "#e65b4c"
let g:base16_gui0F = "#e95949" let g:base16_gui0F = "#e65b4c"
let s:grey = "#717171" let s:grey = "#717171"
@@ -104,20 +104,20 @@ let g:base16_cterm0F = "14"
" Neovim terminal colours " Neovim terminal colours
if has("nvim") if has("nvim")
let g:terminal_color_0 = "#222222" let g:terminal_color_0 = "#222222"
let g:terminal_color_1 = "#e95949" let g:terminal_color_1 = "#e65b4c"
let g:terminal_color_2 = "#5da268" let g:terminal_color_2 = "#6a9e71"
let g:terminal_color_3 = "#989250" let g:terminal_color_3 = "#959263"
let g:terminal_color_4 = "#658ed9" let g:terminal_color_4 = "#5f8de4"
let g:terminal_color_5 = "#658ed9" let g:terminal_color_5 = "#5f8de4"
let g:terminal_color_6 = "#5da268" let g:terminal_color_6 = "#6a9e71"
let g:terminal_color_7 = "#bebebe" let g:terminal_color_7 = "#bebebe"
let g:terminal_color_8 = "#484848" let g:terminal_color_8 = "#484848"
let g:terminal_color_9 = "#e95949" let g:terminal_color_9 = "#e65b4c"
let g:terminal_color_10 = "#5da268" let g:terminal_color_10 = "#6a9e71"
let g:terminal_color_11 = "#989250" let g:terminal_color_11 = "#959263"
let g:terminal_color_12 = "#658ed9" let g:terminal_color_12 = "#5f8de4"
let g:terminal_color_13 = "#658ed9" let g:terminal_color_13 = "#5f8de4"
let g:terminal_color_14 = "#5da268" let g:terminal_color_14 = "#6a9e71"
let g:terminal_color_15 = "#dedede" let g:terminal_color_15 = "#dedede"
let g:terminal_color_background = g:terminal_color_0 let g:terminal_color_background = g:terminal_color_0
let g:terminal_color_foreground = g:terminal_color_5 let g:terminal_color_foreground = g:terminal_color_5
@@ -130,20 +130,20 @@ if has("nvim")
elseif has("terminal") elseif has("terminal")
let g:terminal_ansi_colors = [ let g:terminal_ansi_colors = [
\ "#222222", \ "#222222",
\ "#e95949", \ "#e65b4c",
\ "#5da268", \ "#6a9e71",
\ "#989250", \ "#959263",
\ "#658ed9", \ "#5f8de4",
\ "#658ed9", \ "#5f8de4",
\ "#5da268", \ "#6a9e71",
\ "#bebebe", \ "#bebebe",
\ "#484848", \ "#484848",
\ "#e95949", \ "#e65b4c",
\ "#5da268", \ "#6a9e71",
\ "#989250", \ "#959263",
\ "#658ed9", \ "#5f8de4",
\ "#658ed9", \ "#5f8de4",
\ "#5da268", \ "#6a9e71",
\ "#dedede", \ "#dedede",
\ ] \ ]
endif endif

View File

@@ -47,22 +47,22 @@ let s:gui06 = "#2e2e2e"
let g:base16_gui06 = "#2e2e2e" let g:base16_gui06 = "#2e2e2e"
let s:gui07 = "#222222" let s:gui07 = "#222222"
let g:base16_gui07 = "#222222" let g:base16_gui07 = "#222222"
let s:gui08 = "#b42219" let s:gui08 = "#b1291f"
let g:base16_gui08 = "#b42219" let g:base16_gui08 = "#b1291f"
let s:gui09 = "#905201" let s:gui09 = "#8b551b"
let g:base16_gui09 = "#905201" let g:base16_gui09 = "#8b551b"
let s:gui0A = "#6a6535" let s:gui0A = "#686540"
let g:base16_gui0A = "#6a6535" let g:base16_gui0A = "#686540"
let s:gui0B = "#377242" let s:gui0B = "#446f4b"
let g:base16_gui0B = "#377242" let g:base16_gui0B = "#446f4b"
let s:gui0C = "#377242" let s:gui0C = "#446f4b"
let g:base16_gui0C = "#377242" let g:base16_gui0C = "#446f4b"
let s:gui0D = "#3860ac" let s:gui0D = "#3860ad"
let g:base16_gui0D = "#3860ac" let g:base16_gui0D = "#3860ad"
let s:gui0E = "#3860ac" let s:gui0E = "#3860ad"
let g:base16_gui0E = "#3860ac" let g:base16_gui0E = "#3860ad"
let s:gui0F = "#b42219" let s:gui0F = "#b1291f"
let g:base16_gui0F = "#b42219" let g:base16_gui0F = "#b1291f"
let s:grey = "#808080" let s:grey = "#808080"
@@ -104,20 +104,20 @@ let g:base16_cterm0F = "14"
" Neovim terminal colours " Neovim terminal colours
if has("nvim") if has("nvim")
let g:terminal_color_0 = "#dedede" let g:terminal_color_0 = "#dedede"
let g:terminal_color_1 = "#b42219" let g:terminal_color_1 = "#b1291f"
let g:terminal_color_2 = "#377242" let g:terminal_color_2 = "#446f4b"
let g:terminal_color_3 = "#6a6535" let g:terminal_color_3 = "#686540"
let g:terminal_color_4 = "#3860ac" let g:terminal_color_4 = "#3860ad"
let g:terminal_color_5 = "#3860ac" let g:terminal_color_5 = "#3860ad"
let g:terminal_color_6 = "#377242" let g:terminal_color_6 = "#446f4b"
let g:terminal_color_7 = "#3a3a3a" let g:terminal_color_7 = "#3a3a3a"
let g:terminal_color_8 = "#aeaeae" let g:terminal_color_8 = "#aeaeae"
let g:terminal_color_9 = "#b42219" let g:terminal_color_9 = "#b1291f"
let g:terminal_color_10 = "#377242" let g:terminal_color_10 = "#446f4b"
let g:terminal_color_11 = "#6a6535" let g:terminal_color_11 = "#686540"
let g:terminal_color_12 = "#3860ac" let g:terminal_color_12 = "#3860ad"
let g:terminal_color_13 = "#3860ac" let g:terminal_color_13 = "#3860ad"
let g:terminal_color_14 = "#377242" let g:terminal_color_14 = "#446f4b"
let g:terminal_color_15 = "#222222" let g:terminal_color_15 = "#222222"
let g:terminal_color_background = g:terminal_color_0 let g:terminal_color_background = g:terminal_color_0
let g:terminal_color_foreground = g:terminal_color_5 let g:terminal_color_foreground = g:terminal_color_5
@@ -130,20 +130,20 @@ if has("nvim")
elseif has("terminal") elseif has("terminal")
let g:terminal_ansi_colors = [ let g:terminal_ansi_colors = [
\ "#dedede", \ "#dedede",
\ "#b42219", \ "#b1291f",
\ "#377242", \ "#446f4b",
\ "#6a6535", \ "#686540",
\ "#3860ac", \ "#3860ad",
\ "#3860ac", \ "#3860ad",
\ "#377242", \ "#446f4b",
\ "#3a3a3a", \ "#3a3a3a",
\ "#aeaeae", \ "#aeaeae",
\ "#b42219", \ "#b1291f",
\ "#377242", \ "#446f4b",
\ "#6a6535", \ "#686540",
\ "#3860ac", \ "#3860ad",
\ "#3860ac", \ "#3860ad",
\ "#377242", \ "#446f4b",
\ "#222222", \ "#222222",
\ ] \ ]
endif endif

View File

@@ -47,22 +47,22 @@ let s:gui06 = "#d5cbca"
let g:base16_gui06 = "#d5cbca" let g:base16_gui06 = "#d5cbca"
let s:gui07 = "#e5dbda" let s:gui07 = "#e5dbda"
let g:base16_gui07 = "#e5dbda" let g:base16_gui07 = "#e5dbda"
let s:gui08 = "#e95949" let s:gui08 = "#e65b4c"
let g:base16_gui08 = "#e95949" let g:base16_gui08 = "#e65b4c"
let s:gui09 = "#c97920" let s:gui09 = "#c07e3f"
let g:base16_gui09 = "#c97920" let g:base16_gui09 = "#c07e3f"
let s:gui0A = "#989250" let s:gui0A = "#959263"
let g:base16_gui0A = "#989250" let g:base16_gui0A = "#959263"
let s:gui0B = "#5da268" let s:gui0B = "#6a9e71"
let g:base16_gui0B = "#5da268" let g:base16_gui0B = "#6a9e71"
let s:gui0C = "#5da268" let s:gui0C = "#6a9e71"
let g:base16_gui0C = "#5da268" let g:base16_gui0C = "#6a9e71"
let s:gui0D = "#658ed9" let s:gui0D = "#5f8de4"
let g:base16_gui0D = "#658ed9" let g:base16_gui0D = "#5f8de4"
let s:gui0E = "#658ed9" let s:gui0E = "#5f8de4"
let g:base16_gui0E = "#658ed9" let g:base16_gui0E = "#5f8de4"
let s:gui0F = "#e95949" let s:gui0F = "#e65b4c"
let g:base16_gui0F = "#e95949" let g:base16_gui0F = "#e65b4c"
let s:grey = "#786f6e" let s:grey = "#786f6e"
@@ -104,20 +104,20 @@ let g:base16_cterm0F = "14"
" Neovim terminal colours " Neovim terminal colours
if has("nvim") if has("nvim")
let g:terminal_color_0 = "#27201f" let g:terminal_color_0 = "#27201f"
let g:terminal_color_1 = "#e95949" let g:terminal_color_1 = "#e65b4c"
let g:terminal_color_2 = "#5da268" let g:terminal_color_2 = "#6a9e71"
let g:terminal_color_3 = "#989250" let g:terminal_color_3 = "#959263"
let g:terminal_color_4 = "#658ed9" let g:terminal_color_4 = "#5f8de4"
let g:terminal_color_5 = "#658ed9" let g:terminal_color_5 = "#5f8de4"
let g:terminal_color_6 = "#5da268" let g:terminal_color_6 = "#6a9e71"
let g:terminal_color_7 = "#c5bbba" let g:terminal_color_7 = "#c5bbba"
let g:terminal_color_8 = "#4d4644" let g:terminal_color_8 = "#4d4644"
let g:terminal_color_9 = "#e95949" let g:terminal_color_9 = "#e65b4c"
let g:terminal_color_10 = "#5da268" let g:terminal_color_10 = "#6a9e71"
let g:terminal_color_11 = "#989250" let g:terminal_color_11 = "#959263"
let g:terminal_color_12 = "#658ed9" let g:terminal_color_12 = "#5f8de4"
let g:terminal_color_13 = "#658ed9" let g:terminal_color_13 = "#5f8de4"
let g:terminal_color_14 = "#5da268" let g:terminal_color_14 = "#6a9e71"
let g:terminal_color_15 = "#e5dbda" let g:terminal_color_15 = "#e5dbda"
let g:terminal_color_background = g:terminal_color_0 let g:terminal_color_background = g:terminal_color_0
let g:terminal_color_foreground = g:terminal_color_5 let g:terminal_color_foreground = g:terminal_color_5
@@ -130,20 +130,20 @@ if has("nvim")
elseif has("terminal") elseif has("terminal")
let g:terminal_ansi_colors = [ let g:terminal_ansi_colors = [
\ "#27201f", \ "#27201f",
\ "#e95949", \ "#e65b4c",
\ "#5da268", \ "#6a9e71",
\ "#989250", \ "#959263",
\ "#658ed9", \ "#5f8de4",
\ "#658ed9", \ "#5f8de4",
\ "#5da268", \ "#6a9e71",
\ "#c5bbba", \ "#c5bbba",
\ "#4d4644", \ "#4d4644",
\ "#e95949", \ "#e65b4c",
\ "#5da268", \ "#6a9e71",
\ "#989250", \ "#959263",
\ "#658ed9", \ "#5f8de4",
\ "#658ed9", \ "#5f8de4",
\ "#5da268", \ "#6a9e71",
\ "#e5dbda", \ "#e5dbda",
\ ] \ ]
endif endif

View File

@@ -47,22 +47,22 @@ let s:gui06 = "#332c2b"
let g:base16_gui06 = "#332c2b" let g:base16_gui06 = "#332c2b"
let s:gui07 = "#27201f" let s:gui07 = "#27201f"
let g:base16_gui07 = "#27201f" let g:base16_gui07 = "#27201f"
let s:gui08 = "#b42219" let s:gui08 = "#b1291f"
let g:base16_gui08 = "#b42219" let g:base16_gui08 = "#b1291f"
let s:gui09 = "#905201" let s:gui09 = "#8b551b"
let g:base16_gui09 = "#905201" let g:base16_gui09 = "#8b551b"
let s:gui0A = "#6a6535" let s:gui0A = "#686540"
let g:base16_gui0A = "#6a6535" let g:base16_gui0A = "#686540"
let s:gui0B = "#377242" let s:gui0B = "#446f4b"
let g:base16_gui0B = "#377242" let g:base16_gui0B = "#446f4b"
let s:gui0C = "#377242" let s:gui0C = "#446f4b"
let g:base16_gui0C = "#377242" let g:base16_gui0C = "#446f4b"
let s:gui0D = "#3860ac" let s:gui0D = "#3860ad"
let g:base16_gui0D = "#3860ac" let g:base16_gui0D = "#3860ad"
let s:gui0E = "#3860ac" let s:gui0E = "#3860ad"
let g:base16_gui0E = "#3860ac" let g:base16_gui0E = "#3860ad"
let s:gui0F = "#b42219" let s:gui0F = "#b1291f"
let g:base16_gui0F = "#b42219" let g:base16_gui0F = "#b1291f"
let s:grey = "#877e7c" let s:grey = "#877e7c"
@@ -104,20 +104,20 @@ let g:base16_cterm0F = "14"
" Neovim terminal colours " Neovim terminal colours
if has("nvim") if has("nvim")
let g:terminal_color_0 = "#e5dbda" let g:terminal_color_0 = "#e5dbda"
let g:terminal_color_1 = "#b42219" let g:terminal_color_1 = "#b1291f"
let g:terminal_color_2 = "#377242" let g:terminal_color_2 = "#446f4b"
let g:terminal_color_3 = "#6a6535" let g:terminal_color_3 = "#686540"
let g:terminal_color_4 = "#3860ac" let g:terminal_color_4 = "#3860ad"
let g:terminal_color_5 = "#3860ac" let g:terminal_color_5 = "#3860ad"
let g:terminal_color_6 = "#377242" let g:terminal_color_6 = "#446f4b"
let g:terminal_color_7 = "#403837" let g:terminal_color_7 = "#403837"
let g:terminal_color_8 = "#b5abaa" let g:terminal_color_8 = "#b5abaa"
let g:terminal_color_9 = "#b42219" let g:terminal_color_9 = "#b1291f"
let g:terminal_color_10 = "#377242" let g:terminal_color_10 = "#446f4b"
let g:terminal_color_11 = "#6a6535" let g:terminal_color_11 = "#686540"
let g:terminal_color_12 = "#3860ac" let g:terminal_color_12 = "#3860ad"
let g:terminal_color_13 = "#3860ac" let g:terminal_color_13 = "#3860ad"
let g:terminal_color_14 = "#377242" let g:terminal_color_14 = "#446f4b"
let g:terminal_color_15 = "#27201f" let g:terminal_color_15 = "#27201f"
let g:terminal_color_background = g:terminal_color_0 let g:terminal_color_background = g:terminal_color_0
let g:terminal_color_foreground = g:terminal_color_5 let g:terminal_color_foreground = g:terminal_color_5
@@ -130,20 +130,20 @@ if has("nvim")
elseif has("terminal") elseif has("terminal")
let g:terminal_ansi_colors = [ let g:terminal_ansi_colors = [
\ "#e5dbda", \ "#e5dbda",
\ "#b42219", \ "#b1291f",
\ "#377242", \ "#446f4b",
\ "#6a6535", \ "#686540",
\ "#3860ac", \ "#3860ad",
\ "#3860ac", \ "#3860ad",
\ "#377242", \ "#446f4b",
\ "#403837", \ "#403837",
\ "#b5abaa", \ "#b5abaa",
\ "#b42219", \ "#b1291f",
\ "#377242", \ "#446f4b",
\ "#6a6535", \ "#686540",
\ "#3860ac", \ "#3860ad",
\ "#3860ac", \ "#3860ad",
\ "#377242", \ "#446f4b",
\ "#27201f", \ "#27201f",
\ ] \ ]
endif endif

View File

@@ -47,22 +47,22 @@ let s:gui06 = "#d3ccc7"
let g:base16_gui06 = "#d3ccc7" let g:base16_gui06 = "#d3ccc7"
let s:gui07 = "#e4ddd7" let s:gui07 = "#e4ddd7"
let g:base16_gui07 = "#e4ddd7" let g:base16_gui07 = "#e4ddd7"
let s:gui08 = "#e95949" let s:gui08 = "#e65b4c"
let g:base16_gui08 = "#e95949" let g:base16_gui08 = "#e65b4c"
let s:gui09 = "#c97920" let s:gui09 = "#c07e3f"
let g:base16_gui09 = "#c97920" let g:base16_gui09 = "#c07e3f"
let s:gui0A = "#989250" let s:gui0A = "#959263"
let g:base16_gui0A = "#989250" let g:base16_gui0A = "#959263"
let s:gui0B = "#5da268" let s:gui0B = "#6a9e71"
let g:base16_gui0B = "#5da268" let g:base16_gui0B = "#6a9e71"
let s:gui0C = "#5da268" let s:gui0C = "#6a9e71"
let g:base16_gui0C = "#5da268" let g:base16_gui0C = "#6a9e71"
let s:gui0D = "#658ed9" let s:gui0D = "#5f8de4"
let g:base16_gui0D = "#658ed9" let g:base16_gui0D = "#5f8de4"
let s:gui0E = "#658ed9" let s:gui0E = "#5f8de4"
let g:base16_gui0E = "#658ed9" let g:base16_gui0E = "#5f8de4"
let s:gui0F = "#e95949" let s:gui0F = "#e65b4c"
let g:base16_gui0F = "#e95949" let g:base16_gui0F = "#e65b4c"
let s:grey = "#76706b" let s:grey = "#76706b"
@@ -104,20 +104,20 @@ let g:base16_cterm0F = "14"
" Neovim terminal colours " Neovim terminal colours
if has("nvim") if has("nvim")
let g:terminal_color_0 = "#26211c" let g:terminal_color_0 = "#26211c"
let g:terminal_color_1 = "#e95949" let g:terminal_color_1 = "#e65b4c"
let g:terminal_color_2 = "#5da268" let g:terminal_color_2 = "#6a9e71"
let g:terminal_color_3 = "#989250" let g:terminal_color_3 = "#959263"
let g:terminal_color_4 = "#658ed9" let g:terminal_color_4 = "#5f8de4"
let g:terminal_color_5 = "#658ed9" let g:terminal_color_5 = "#5f8de4"
let g:terminal_color_6 = "#5da268" let g:terminal_color_6 = "#6a9e71"
let g:terminal_color_7 = "#c3bcb7" let g:terminal_color_7 = "#c3bcb7"
let g:terminal_color_8 = "#4c4642" let g:terminal_color_8 = "#4c4642"
let g:terminal_color_9 = "#e95949" let g:terminal_color_9 = "#e65b4c"
let g:terminal_color_10 = "#5da268" let g:terminal_color_10 = "#6a9e71"
let g:terminal_color_11 = "#989250" let g:terminal_color_11 = "#959263"
let g:terminal_color_12 = "#658ed9" let g:terminal_color_12 = "#5f8de4"
let g:terminal_color_13 = "#658ed9" let g:terminal_color_13 = "#5f8de4"
let g:terminal_color_14 = "#5da268" let g:terminal_color_14 = "#6a9e71"
let g:terminal_color_15 = "#e4ddd7" let g:terminal_color_15 = "#e4ddd7"
let g:terminal_color_background = g:terminal_color_0 let g:terminal_color_background = g:terminal_color_0
let g:terminal_color_foreground = g:terminal_color_5 let g:terminal_color_foreground = g:terminal_color_5
@@ -130,20 +130,20 @@ if has("nvim")
elseif has("terminal") elseif has("terminal")
let g:terminal_ansi_colors = [ let g:terminal_ansi_colors = [
\ "#26211c", \ "#26211c",
\ "#e95949", \ "#e65b4c",
\ "#5da268", \ "#6a9e71",
\ "#989250", \ "#959263",
\ "#658ed9", \ "#5f8de4",
\ "#658ed9", \ "#5f8de4",
\ "#5da268", \ "#6a9e71",
\ "#c3bcb7", \ "#c3bcb7",
\ "#4c4642", \ "#4c4642",
\ "#e95949", \ "#e65b4c",
\ "#5da268", \ "#6a9e71",
\ "#989250", \ "#959263",
\ "#658ed9", \ "#5f8de4",
\ "#658ed9", \ "#5f8de4",
\ "#5da268", \ "#6a9e71",
\ "#e4ddd7", \ "#e4ddd7",
\ ] \ ]
endif endif

View File

@@ -47,22 +47,22 @@ let s:gui06 = "#322d28"
let g:base16_gui06 = "#322d28" let g:base16_gui06 = "#322d28"
let s:gui07 = "#26211c" let s:gui07 = "#26211c"
let g:base16_gui07 = "#26211c" let g:base16_gui07 = "#26211c"
let s:gui08 = "#b42219" let s:gui08 = "#b1291f"
let g:base16_gui08 = "#b42219" let g:base16_gui08 = "#b1291f"
let s:gui09 = "#905201" let s:gui09 = "#8b551b"
let g:base16_gui09 = "#905201" let g:base16_gui09 = "#8b551b"
let s:gui0A = "#6a6535" let s:gui0A = "#686540"
let g:base16_gui0A = "#6a6535" let g:base16_gui0A = "#686540"
let s:gui0B = "#377242" let s:gui0B = "#446f4b"
let g:base16_gui0B = "#377242" let g:base16_gui0B = "#446f4b"
let s:gui0C = "#377242" let s:gui0C = "#446f4b"
let g:base16_gui0C = "#377242" let g:base16_gui0C = "#446f4b"
let s:gui0D = "#3860ac" let s:gui0D = "#3860ad"
let g:base16_gui0D = "#3860ac" let g:base16_gui0D = "#3860ad"
let s:gui0E = "#3860ac" let s:gui0E = "#3860ad"
let g:base16_gui0E = "#3860ac" let g:base16_gui0E = "#3860ad"
let s:gui0F = "#b42219" let s:gui0F = "#b1291f"
let g:base16_gui0F = "#b42219" let g:base16_gui0F = "#b1291f"
let s:grey = "#857f7a" let s:grey = "#857f7a"
@@ -104,20 +104,20 @@ let g:base16_cterm0F = "14"
" Neovim terminal colours " Neovim terminal colours
if has("nvim") if has("nvim")
let g:terminal_color_0 = "#e4ddd7" let g:terminal_color_0 = "#e4ddd7"
let g:terminal_color_1 = "#b42219" let g:terminal_color_1 = "#b1291f"
let g:terminal_color_2 = "#377242" let g:terminal_color_2 = "#446f4b"
let g:terminal_color_3 = "#6a6535" let g:terminal_color_3 = "#686540"
let g:terminal_color_4 = "#3860ac" let g:terminal_color_4 = "#3860ad"
let g:terminal_color_5 = "#3860ac" let g:terminal_color_5 = "#3860ad"
let g:terminal_color_6 = "#377242" let g:terminal_color_6 = "#446f4b"
let g:terminal_color_7 = "#3f3935" let g:terminal_color_7 = "#3f3935"
let g:terminal_color_8 = "#b3ada7" let g:terminal_color_8 = "#b3ada7"
let g:terminal_color_9 = "#b42219" let g:terminal_color_9 = "#b1291f"
let g:terminal_color_10 = "#377242" let g:terminal_color_10 = "#446f4b"
let g:terminal_color_11 = "#6a6535" let g:terminal_color_11 = "#686540"
let g:terminal_color_12 = "#3860ac" let g:terminal_color_12 = "#3860ad"
let g:terminal_color_13 = "#3860ac" let g:terminal_color_13 = "#3860ad"
let g:terminal_color_14 = "#377242" let g:terminal_color_14 = "#446f4b"
let g:terminal_color_15 = "#26211c" let g:terminal_color_15 = "#26211c"
let g:terminal_color_background = g:terminal_color_0 let g:terminal_color_background = g:terminal_color_0
let g:terminal_color_foreground = g:terminal_color_5 let g:terminal_color_foreground = g:terminal_color_5
@@ -130,20 +130,20 @@ if has("nvim")
elseif has("terminal") elseif has("terminal")
let g:terminal_ansi_colors = [ let g:terminal_ansi_colors = [
\ "#e4ddd7", \ "#e4ddd7",
\ "#b42219", \ "#b1291f",
\ "#377242", \ "#446f4b",
\ "#6a6535", \ "#686540",
\ "#3860ac", \ "#3860ad",
\ "#3860ac", \ "#3860ad",
\ "#377242", \ "#446f4b",
\ "#3f3935", \ "#3f3935",
\ "#b3ada7", \ "#b3ada7",
\ "#b42219", \ "#b1291f",
\ "#377242", \ "#446f4b",
\ "#6a6535", \ "#686540",
\ "#3860ac", \ "#3860ad",
\ "#3860ac", \ "#3860ad",
\ "#377242", \ "#446f4b",
\ "#26211c", \ "#26211c",
\ ] \ ]
endif endif

Some files were not shown because too many files have changed in this diff Show More