Hi, im trying to implement my own color scheme file to Wezterm.
Main colors are easy with TOML but i have advanced one for TAB`s.
Anyone playing around with TOML files and doing their own color schemes ?
My current toml file looks like this:
I need to implement this part:
Im reading TOML file documentation ... but have no understanding in what i have to do to make it happen.
Thanks!
Main colors are easy with TOML but i have advanced one for TAB`s.
Anyone playing around with TOML files and doing their own color schemes ?
My current toml file looks like this:
Code:
[colors]
background = "#333333"
foreground = "#8C8C8C"
cursor_bg = "#AA2B28"
cursor_fg = "#000000"
cursor_border = "#AA2B28"
selection_bg = "#8C8C8C"
selection_fg = "#000000"
ansi = ["#000000","#AA2B28","#8C8C8C","#FDEFD5","#010349","#502752","669BBC","#bcbcbc"]
brights = ["#000000","#AA2B28","#8C8C8C","#FDEFD5","#010349","#502752","669BBC","#bcbcbc"]
Code:
-- tab_bar = {
-- background = '000000',
-- active_tab = {
-- fg_color = '859900',
-- bg_color = '000000',
-- },
-- inactive_tab = {
-- fg_color = '4a4e5b',
-- bg_color = '000000',
-- },
-- inactive_tab_hover = {
-- fg_color = 'a292a3',
-- bg_color = '000000',
-- },
-- new_tab = {
-- fg_color = '268bd2',
-- bg_color = '000000',
-- },
-- new_tab_hover = {
-- fg_color = 'c4746e',
-- bg_color = '000000',
-- },
-- }
--}
Im reading TOML file documentation ... but have no understanding in what i have to do to make it happen.
Thanks!