mirror of
https://github.com/webhooked/kanso.nvim.git
synced 2026-06-01 06:37:04 +02:00
40 lines
819 B
Lua
40 lines
819 B
Lua
local config = {
|
|
force_reverse_video_cursor = true,
|
|
colors = {
|
|
foreground = "#C5C9C7",
|
|
background = "#14171d",
|
|
|
|
cursor_bg = "#C5C9C7",
|
|
cursor_fg = "#14171d",
|
|
cursor_border = "#C5C9C7",
|
|
|
|
selection_fg = "#C5C9C7",
|
|
selection_bg = "#393B44",
|
|
|
|
scrollbar_thumb = "#393B44",
|
|
split = "#393B44",
|
|
|
|
ansi = {
|
|
"#14171d",
|
|
"#C4746E",
|
|
"#8A9A7B",
|
|
"#C4B28A",
|
|
"#8BA4B0",
|
|
"#A292A3",
|
|
"#8EA4A2",
|
|
"#A4A7A4",
|
|
},
|
|
brights = {
|
|
"#A4A7A4",
|
|
"#E46876",
|
|
"#87A987",
|
|
"#E6C384",
|
|
"#7FB4CA",
|
|
"#938AA9",
|
|
"#7AA89F",
|
|
"#C5C9C7",
|
|
},
|
|
},
|
|
}
|
|
|
|
return config
|