Switch Wezterm color scheme

This commit is contained in:
Sonny Bakker 2026-06-08 19:01:28 +02:00
parent 9fd688ab95
commit 04be1ffea0

View file

@ -13,23 +13,12 @@ end
local function scheme_for_appearance(appearance) local function scheme_for_appearance(appearance)
if appearance:find 'Dark' then if appearance:find 'Dark' then
return 'Dark' return 'Github Dark'
else else
return 'Light' return 'Github'
end end
end end
return { return {
color_schemes = {
['Dark'] = {
background = 'rgb(41, 46, 50)',
foreground = 'white'
},
['Light'] = {
background = 'white',
foreground = 'black'
},
},
color_scheme = scheme_for_appearance(get_appearance()), color_scheme = scheme_for_appearance(get_appearance()),
} }