2021-02-13 00:03:57 +00:00
|
|
|
-- Copyright (c) 2020-2021 shadmansaleh
|
|
|
|
-- MIT license, see LICENSE for more details.
|
2021-03-15 23:37:46 +00:00
|
|
|
-- LuaFormatter off
|
2021-02-04 21:07:57 +00:00
|
|
|
local colors = {
|
2021-03-15 23:37:46 +00:00
|
|
|
fg1 = '#282828',
|
|
|
|
color2 = '#504945',
|
|
|
|
fg2 = '#ddc7a1',
|
|
|
|
color3 = '#32302f',
|
|
|
|
color4 = '#a89984',
|
|
|
|
color5 = '#7daea3',
|
|
|
|
color6 = '#a9b665',
|
|
|
|
color7 = '#d8a657',
|
|
|
|
color8 = '#d3869b',
|
|
|
|
color9 = '#ea6962',
|
2021-02-04 21:07:57 +00:00
|
|
|
}
|
2021-03-15 23:37:46 +00:00
|
|
|
-- LuaFormatter on
|
2021-02-04 21:07:57 +00:00
|
|
|
|
|
|
|
local M = {
|
|
|
|
normal = {
|
2021-03-15 23:37:46 +00:00
|
|
|
a = {fg = colors.fg1, bg = colors.color4, 'bold'},
|
|
|
|
b = {fg = colors.fg2, bg = colors.color2},
|
|
|
|
c = {fg = colors.fg2, bg = colors.color3}
|
2021-02-04 21:07:57 +00:00
|
|
|
},
|
2021-03-15 23:37:46 +00:00
|
|
|
command = {a = {fg = colors.fg1, bg = colors.color5, 'bold'}},
|
|
|
|
inactive = {a = {fg = colors.fg2, bg = colors.color2}},
|
|
|
|
insert = {a = {fg = colors.fg1, bg = colors.color6, 'bold'}},
|
|
|
|
replace = {a = {fg = colors.fg1, bg = colors.color7, 'bold'}},
|
|
|
|
terminal = {a = {fg = colors.fg1, bg = colors.color8, 'bold'}},
|
|
|
|
visual = {a = {fg = colors.fg1, bg = colors.color9, 'bold'}}
|
2021-02-04 21:07:57 +00:00
|
|
|
}
|
|
|
|
return M
|