feat(theme): starting switch to everforest

Signed-off-by: Ismo Vuorinen <ismo@ivuorinen.net>
This commit is contained in:
2025-09-03 14:16:46 +03:00
parent f6252c871e
commit 530ce0df4f
8 changed files with 334 additions and 64 deletions

View File

@@ -0,0 +1,32 @@
[colors]
ansi = [
'#475258',
'#e67e80',
'#a7c080',
'#dbbc7f',
'#7fbbb3',
'#d699b6',
'#83c092',
'#d3c6aa',
]
background = '#2d353b'
brights = [
'#475258',
'#e67e80',
'#a7c080',
'#dbbc7f',
'#7fbbb3',
'#d699b6',
'#83c092',
'#d3c6aa',
]
cursor_bg = '#d3c6aa'
cursor_border = '#d3c6aa'
cursor_fg = '#2d353b'
foreground = '#d3c6aa'
[colors.indexed]
[metadata]
name = 'Everforest Dark (Medium)'
origin_url = 'https://github.com/frdwin/Everforest-Wezterm'

View File

@@ -0,0 +1,32 @@
[colors]
ansi = [
'#5c6a72',
'#f85552',
'#8da101',
'#dfa000',
'#3a94c5',
'#df69ba',
'#35a77c',
'#e0dcc7',
]
background = '#fdf6e3'
brights = [
'#5c6a72',
'#f85552',
'#8da101',
'#dfa000',
'#3a94c5',
'#df69ba',
'#35a77c',
'#e0dcc7',
]
cursor_bg = '#5c6a72'
cursor_border = '#5c6a72'
cursor_fg = '#fdf6e3'
foreground = '#5c6a72'
[colors.indexed]
[metadata]
name = 'Everforest Light (Medium)'
origin_url = 'https://github.com/frdwin/Everforest-Wezterm'

View File

@@ -5,6 +5,10 @@ config.set_environment_variables = {
COLORTERM = 'truecolor',
}
config.color_scheme_dirs = {
'~/.config/wezterm/colors',
}
-- Font and font size
config.font_size = 16
config.font = wezterm.font_with_fallback {
@@ -45,9 +49,9 @@ config.scrollback_lines = 3000
-- Function to detect the theme based on appearance
function Scheme_for_appearance(appearance)
if appearance:find 'Dark' then
return 'Tokyo Night Storm'
return 'Everforest Dark (Medium)'
else
return 'Tokyo Night Day'
return 'Everforest Light (Medium)'
end
end