Add Everforest theme variants

This commit is contained in:
Binary 2026-02-12 19:51:15 +01:00 committed by GitHub
parent d6aa290133
commit 09db982deb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 230 additions and 4 deletions

View file

@ -78,8 +78,12 @@ configuration file.
| **_duskfox_**<br>[source](https://github.com/EdenEast/nightfox.nvim/blob/7557f26defd093c4e9bc17f28b08403f706f5a44/extra/duskfox/alacritty.toml) | ![duskfox](images/duskfox.png) |
| **_enfocado_dark_**<br>[source](https://github.com/wuelnerdotexe/vim-enfocado.git) | ![enfocado_dark](images/enfocado_dark.png) |
| **_enfocado_light_**<br>[source](https://github.com/wuelnerdotexe/vim-enfocado.git) | ![enfocado_light](images/enfocado_light.png) |
| **_everforest_dark_**<br>[source](https://github.com/sainnhe/everforest) | ![everforest_dark](images/everforest_dark.png) |
| **_everforest_light_**<br>[source](https://github.com/sainnhe/everforest) | ![everforest_light](images/everforest_light.png) |
| **_everforest_dark_hard_**<br>[source](https://github.com/sainnhe/everforest) | ![everforest_dark_hard](images/everforest_dark_hard.png) |
| **_everforest_dark_medium_**<br>[source](https://github.com/sainnhe/everforest) | ![everforest_dark_medium](images/everforest_dark_medium.png) |
| **_everforest_dark_soft_**<br>[source](https://github.com/sainnhe/everforest) | ![everforest_dark_soft](images/everforest_dark_soft.png) |
| **_everforest_light_hard_**<br>[source](https://github.com/sainnhe/everforest) | ![everforest_light_hard](images/everforest_light_hard.png) |
| **_everforest_light_medium_**<br>[source](https://github.com/sainnhe/everforest) | ![everforest_light_medium](images/everforest_light_medium.png) |
| **_everforest_light_soft_**<br>[source](https://github.com/sainnhe/everforest) | ![everforest_light_soft](images/everforest_light_soft.png) |
| **_falcon_**<br>[source](https://github.com/fenetikm/falcon) | ![falcon](images/falcon.png) |
| **_flat_remix_**<br>[source](https://github.com/Mayccoll/Gogh/blob/master/themes/flat-remix.sh) | ![flat_remix](images/flat_remix.png) |
| **_flexoki_**<br>[source](https://github.com/kepano/flexoki/tree/main/alacritty) | ![flexoki](images/flexoki.png) |

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

View file

@ -1,4 +1,4 @@
# Colors (Everforest Dark)
# Colors (Everforest Dark Medium)
# Default colors
[colors.primary]

View file

@ -0,0 +1,37 @@
# Colors (Everforest Dark Hard)
[colors.primary]
background = '#272e33'
foreground = '#d3c6aa'
[colors.normal]
black = '#414b50'
red = '#e67e80'
green = '#a7c080'
yellow = '#dbbc7f'
blue = '#7fbbb3'
magenta = '#d699b6'
cyan = '#83c092'
white = '#d3c6aa'
[colors.bright]
black = '#414b50'
red = '#e67e80'
green = '#a7c080'
yellow = '#dbbc7f'
blue = '#7fbbb3'
magenta = '#d699b6'
cyan = '#83c092'
white = '#d3c6aa'
[colors.selection]
background = '#4c3743'
text = '#d3c6aa'
[colors.search.matches]
background = '#a7c080'
foreground = '#272e33'
[colors.search.focused_match]
background = '#e67e80'
foreground = '#272e33'

View file

@ -0,0 +1,37 @@
# Colors (Everforest Dark Medium)
[colors.primary]
background = '#2d353b'
foreground = '#d3c6aa'
[colors.normal]
black = '#475258'
red = '#e67e80'
green = '#a7c080'
yellow = '#dbbc7f'
blue = '#7fbbb3'
magenta = '#d699b6'
cyan = '#83c092'
white = '#d3c6aa'
[colors.bright]
black = '#475258'
red = '#e67e80'
green = '#a7c080'
yellow = '#dbbc7f'
blue = '#7fbbb3'
magenta = '#d699b6'
cyan = '#83c092'
white = '#d3c6aa'
[colors.selection]
background = '#543a48'
text = '#d3c6aa'
[colors.search.matches]
background = '#a7c080'
foreground = '#2d353b'
[colors.search.focused_match]
background = '#e67e80'
foreground = '#2d353b'

View file

@ -0,0 +1,37 @@
# Colors (Everforest Dark Soft)
[colors.primary]
background = '#333c43'
foreground = '#d3c6aa'
[colors.normal]
black = '#4d5960'
red = '#e67e80'
green = '#a7c080'
yellow = '#dbbc7f'
blue = '#7fbbb3'
magenta = '#d699b6'
cyan = '#83c092'
white = '#d3c6aa'
[colors.bright]
black = '#4d5960'
red = '#e67e80'
green = '#a7c080'
yellow = '#dbbc7f'
blue = '#7fbbb3'
magenta = '#d699b6'
cyan = '#83c092'
white = '#d3c6aa'
[colors.selection]
background = '#5c3f4f'
text = '#d3c6aa'
[colors.search.matches]
background = '#a7c080'
foreground = '#333c43'
[colors.search.focused_match]
background = '#e67e80'
foreground = '#333c43'

View file

@ -1,4 +1,4 @@
# Colors (Everforest Light)
# Colors (Everforest Light Medium)
# Default colors
[colors.primary]

View file

@ -0,0 +1,37 @@
# Colors (Everforest Light Hard)
[colors.primary]
background = '#fffbef'
foreground = '#5c6a72'
[colors.normal]
black = '#5c6a72'
red = '#f85552'
green = '#8da101'
yellow = '#dfa000'
blue = '#3a94c5'
magenta = '#df69ba'
cyan = '#35a77c'
white = '#e8e5d5'
[colors.bright]
black = '#5c6a72'
red = '#f85552'
green = '#8da101'
yellow = '#dfa000'
blue = '#3a94c5'
magenta = '#df69ba'
cyan = '#35a77c'
white = '#e8e5d5'
[colors.selection]
background = '#f0f2d4'
text = '#5c6a72'
[colors.search.matches]
background = '#8da101'
foreground = '#fffbef'
[colors.search.focused_match]
background = '#f85552'
foreground = '#fffbef'

View file

@ -0,0 +1,37 @@
# Colors (Everforest Light Medium)
[colors.primary]
background = '#fdf6e3'
foreground = '#5c6a72'
[colors.normal]
black = '#5c6a72'
red = '#f85552'
green = '#8da101'
yellow = '#dfa000'
blue = '#3a94c5'
magenta = '#df69ba'
cyan = '#35a77c'
white = '#e0dcc7'
[colors.bright]
black = '#5c6a72'
red = '#f85552'
green = '#8da101'
yellow = '#dfa000'
blue = '#3a94c5'
magenta = '#df69ba'
cyan = '#35a77c'
white = '#e0dcc7'
[colors.selection]
background = '#eaedc8'
text = '#5c6a72'
[colors.search.matches]
background = '#8da101'
foreground = '#fdf6e3'
[colors.search.focused_match]
background = '#f85552'
foreground = '#fdf6e3'

View file

@ -0,0 +1,37 @@
# Colors (Everforest Light Soft)
[colors.primary]
background = '#f3ead3'
foreground = '#5c6a72'
[colors.normal]
black = '#5c6a72'
red = '#f85552'
green = '#8da101'
yellow = '#dfa000'
blue = '#3a94c5'
magenta = '#df69ba'
cyan = '#35a77c'
white = '#d8d3ba'
[colors.bright]
black = '#5c6a72'
red = '#f85552'
green = '#8da101'
yellow = '#dfa000'
blue = '#3a94c5'
magenta = '#df69ba'
cyan = '#35a77c'
white = '#d8d3ba'
[colors.selection]
background = '#e1e4bd'
text = '#5c6a72'
[colors.search.matches]
background = '#8da101'
foreground = '#f3ead3'
[colors.search.focused_match]
background = '#f85552'
foreground = '#f3ead3'