Upadted bright colors

This commit is contained in:
Candifloss 2025-02-01 19:18:45 +05:30
parent bec0db4878
commit db35dcfd90

View File

@ -7,60 +7,77 @@ config.font_size = 11.0
config.cursor_blink_rate = 800 config.cursor_blink_rate = 800
config.window_padding = { config.window_padding = {
left = "3px", left = "3px",
right = 0, right = 0,
top = "1px", top = "1px",
bottom = 0, bottom = 0,
} }
config.window_decorations = "NONE" config.window_decorations = "NONE"
config.window_frame = { config.window_frame = {
inactive_titlebar_bg = '#2d2d2d', inactive_titlebar_bg = '#2d2d2d',
active_titlebar_bg = '#232323', active_titlebar_bg = '#232323',
} }
config.use_fancy_tab_bar = false config.use_fancy_tab_bar = false
config.enable_tab_bar = false config.enable_tab_bar = false
config.colors = { config.colors = {
background = '#101010', background = '#101010',
foreground = '#BBBBBB', foreground = '#BBBBBB',
cursor_bg = '#22785E', cursor_bg = '#22785E',
cursor_fg = '#000000', cursor_fg = '#000000',
selection_fg = '#D3D7CF', selection_fg = '#D3D7CF',
selection_bg = '#262626', selection_bg = '#262626',
tab_bar = { tab_bar = {
active_tab = { active_tab = {
bg_color = "#101010", bg_color = "#101010",
fg_color = "#BBBBBB", fg_color = "#BBBBBB",
}, },
inactive_tab = { inactive_tab = {
bg_color = "#232323", bg_color = "#232323",
fg_color = "#BBBBBB", fg_color = "#BBBBBB",
}, },
}, },
ansi = {"#010101","#d62222","#3ba04d","#757575","#2288d6","#aa7240","#11a0af","#a6adc8"}, -- #black, #red, #green, #yellow, #blue, #magenta, #cyan, #white
brights = {"#010101","#d62222","#3ba04d","#757575","#2288d6","#aa7240","#11a0af","#a6adc8"}, ansi = {
"#010101", "#d62222", "#3ba04d", "#f6e000", "#1958ff", "#b300b3", "#10bfaf", "#c6c6c6"
},
brights = {
"#606060", "#ff4444", "#3bd04d", "#dfff1f", "#01a9ff", "#f600f6", "#10efdf", "#e9e9e9"
},
} }
config.inactive_pane_hsb = { config.inactive_pane_hsb = {
saturation = 1.0, saturation = 1.0,
brightness = 0.4, brightness = 0.4,
} }
config.keys = { config.keys = {
{ key = 'h', mods = 'CTRL', {
action = wezterm.action.SplitHorizontal { domain = 'CurrentPaneDomain' }, key = 'h', mods = 'CTRL',
}, action = wezterm.action.SplitHorizontal
{ key = 'v', mods = 'CTRL', {
action = wezterm.action.SplitVertical { domain = 'CurrentPaneDomain' }, domain = 'CurrentPaneDomain'
}, },
{ key = 'w', mods = 'CTRL', },
action = wezterm.action.CloseCurrentPane { confirm = true }, {
}, key = 'v', mods = 'CTRL',
action = wezterm.action.SplitVertical
{
domain = 'CurrentPaneDomain'
},
},
{
key = 'w', mods = 'CTRL',
action = wezterm.action.CloseCurrentPane
{
confirm = true
},
},
} }
return config return config