wezterm: halfhearted stab at a light theme
This commit is contained in:
parent
72870aee62
commit
111aa1238f
1 changed files with 33 additions and 6 deletions
|
@ -23,7 +23,7 @@ end
|
||||||
local themeShelmanDark = {
|
local themeShelmanDark = {
|
||||||
colors = {
|
colors = {
|
||||||
foreground = "#ded9ce",
|
foreground = "#ded9ce",
|
||||||
background = "#171717",
|
background = "#171a23",
|
||||||
cursor_bg = "#FB8C00",
|
cursor_bg = "#FB8C00",
|
||||||
cursor_border = "#FB8C00",
|
cursor_border = "#FB8C00",
|
||||||
split = "#444444",
|
split = "#444444",
|
||||||
|
@ -31,17 +31,44 @@ local themeShelmanDark = {
|
||||||
brights = { "#313131", "#f58b7f", "#dcf88f", "#eee5b2", "#a5c7ff", "#ddaaff", "#b6fff9", "#fefffe" },
|
brights = { "#313131", "#f58b7f", "#dcf88f", "#eee5b2", "#a5c7ff", "#ddaaff", "#b6fff9", "#fefffe" },
|
||||||
tab_bar = {
|
tab_bar = {
|
||||||
background = "#000000",
|
background = "#000000",
|
||||||
active_tab = { bg_color = "#171717", fg_color = "#c0b070", intensity = "Bold", },
|
active_tab = { bg_color = "#171a23", fg_color = "#c0b070", intensity = "Normal", },
|
||||||
inactive_tab = { bg_color = "#000000", fg_color = "#c0c0c0", intensity = "Half", },
|
inactive_tab = { bg_color = "#000000", fg_color = "#c0c0c0", intensity = "Half", },
|
||||||
inactive_tab_hover = { bg_color = "#333333", fg_color = "#909090", italic = true, }
|
inactive_tab_hover = { bg_color = "#333333", fg_color = "#909090", italic = true, }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
tab_bar_style = {
|
tab_bar_style = {
|
||||||
active_tab_left = wezterm.format({ {Background={Color="#171717"}}, {Foreground={Color="#000000"}}, {Text=" "} }),
|
active_tab_left = wezterm.format({ {Background={Color="#171a23"}}, {Foreground={Color="#000000"}}, {Text=" "} }),
|
||||||
active_tab_right = wezterm.format({ {Background={Color="#171717"}}, {Foreground={Color="#000000"}}, {Text=" "} }),
|
active_tab_right = wezterm.format({ {Background={Color="#171a23"}}, {Foreground={Color="#000000"}}, {Text=" "} }),
|
||||||
inactive_tab_left = wezterm.format({ {Background={Color="#000000"}}, {Foreground={Color="#171717"}}, {Text=" "} }),
|
inactive_tab_left = wezterm.format({ {Background={Color="#000000"}}, {Foreground={Color="#171a23"}}, {Text=" "} }),
|
||||||
inactive_tab_right = wezterm.format({ {Background={Color="#000000"}}, {Foreground={Color="#171717"}}, {Text="▕"} }),
|
inactive_tab_right = wezterm.format({ {Background={Color="#000000"}}, {Foreground={Color="#171a23"}}, {Text="▕"} }),
|
||||||
|
inactive_tab_hover_left = wezterm.format({ {Background={Color="#333333"}}, {Foreground={Color="#ffffff"}}, {Text=" "} }),
|
||||||
|
inactive_tab_hover_right = wezterm.format({ {Background={Color="#333333"}}, {Foreground={Color="#ffffff"}}, {Text=" "} }),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
local themeShelmanLight = {
|
||||||
|
colors = {
|
||||||
|
foreground = "#000000",
|
||||||
|
background = "#f7f7f7",
|
||||||
|
cursor_bg = "#FB8C00",
|
||||||
|
cursor_border = "#FB8C00",
|
||||||
|
split = "#444444",
|
||||||
|
ansi = { "#000000", "#ff605a", "#b1e869", "#ead89c", "#5da9f6", "#e86aff", "#82fff6", "#ded9ce" },
|
||||||
|
brights = { "#313131", "#f58b7f", "#dcf88f", "#eee5b2", "#a5c7ff", "#ddaaff", "#b6fff9", "#fefffe" },
|
||||||
|
tab_bar = {
|
||||||
|
background = "#444444",
|
||||||
|
active_tab = { bg_color = "#f7f7f7", fg_color = "#000000", intensity = "Normal", },
|
||||||
|
inactive_tab = { bg_color = "#777777", fg_color = "#000000", intensity = "Half", },
|
||||||
|
inactive_tab_hover = { bg_color = "#333333", fg_color = "#909090", italic = true, }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
tab_bar_style = {
|
||||||
|
active_tab_left = wezterm.format({ {Background={Color="#f7f7f7"}}, {Foreground={Color="#000000"}}, {Text=" "} }),
|
||||||
|
active_tab_right = wezterm.format({ {Background={Color="#f7f7f7"}}, {Foreground={Color="#000000"}}, {Text=" "} }),
|
||||||
|
inactive_tab_left = wezterm.format({ {Background={Color="#777777"}}, {Foreground={Color="#f7f7f7"}}, {Text=" "} }),
|
||||||
|
inactive_tab_right = wezterm.format({ {Background={Color="#777777"}}, {Foreground={Color="#333333"}}, {Text="▕"} }),
|
||||||
inactive_tab_hover_left = wezterm.format({ {Background={Color="#333333"}}, {Foreground={Color="#ffffff"}}, {Text=" "} }),
|
inactive_tab_hover_left = wezterm.format({ {Background={Color="#333333"}}, {Foreground={Color="#ffffff"}}, {Text=" "} }),
|
||||||
inactive_tab_hover_right = wezterm.format({ {Background={Color="#333333"}}, {Foreground={Color="#ffffff"}}, {Text=" "} }),
|
inactive_tab_hover_right = wezterm.format({ {Background={Color="#333333"}}, {Foreground={Color="#ffffff"}}, {Text=" "} }),
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue