33 lines
677 B
Lua
33 lines
677 B
Lua
|
-- Color scheme
|
||
|
|
||
|
local colorscheme = {
|
||
|
background = '#101010',
|
||
|
foreground = '#BBBBBB',
|
||
|
|
||
|
cursor_bg = '#22785E',
|
||
|
cursor_fg = '#000000',
|
||
|
|
||
|
selection_fg = '#D3D7CF',
|
||
|
selection_bg = '#262626',
|
||
|
|
||
|
tab_bar = {
|
||
|
active_tab = {
|
||
|
bg_color = "#101010",
|
||
|
fg_color = "#BBBBBB",
|
||
|
},
|
||
|
inactive_tab = {
|
||
|
bg_color = "#232323",
|
||
|
fg_color = "#BBBBBB",
|
||
|
},
|
||
|
},
|
||
|
|
||
|
-- #black, #red, #green, #yellow, #blue, #magenta, #cyan, #white
|
||
|
ansi = {
|
||
|
"#010101", "#d62222", "#3ba04d", "#f6e000", "#1958ff", "#b300b3", "#10bfaf", "#c6c6c6"
|
||
|
},
|
||
|
brights = {
|
||
|
"#606060", "#ff4444", "#3bd04d", "#dfff1f", "#01a9ff", "#f600f6", "#10efdf", "#e9e9e9"
|
||
|
},
|
||
|
}
|
||
|
|
||
|
return colorscheme
|