mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-18 10:54:41 +00:00
feat(theme): starting switch to everforest
Signed-off-by: Ismo Vuorinen <ismo@ivuorinen.net>
This commit is contained in:
32
config/wezterm/colors/everforest-dark-medium.toml
Normal file
32
config/wezterm/colors/everforest-dark-medium.toml
Normal 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'
|
||||
32
config/wezterm/colors/everforest-light-medium.toml
Normal file
32
config/wezterm/colors/everforest-light-medium.toml
Normal 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'
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user