2021-03-15 23:37:46 +00:00
|
|
|
-- Copyright (c) 2020-2021 IGI-111
|
|
|
|
-- MIT license, see LICENSE for more details.
|
|
|
|
-- LuaFormatter off
|
2021-02-28 03:16:57 +00:00
|
|
|
local colors = {
|
2021-03-15 23:37:46 +00:00
|
|
|
vertsplit = '#181A1F',
|
|
|
|
special_grey = '#3B4048',
|
|
|
|
menu_grey = '#3E4452',
|
|
|
|
cursor_grey = '#2C323C',
|
|
|
|
gutter_fg_grey = '#4B5263',
|
|
|
|
blue = '#82b1ff',
|
|
|
|
dark_red = '#BE5046',
|
|
|
|
white = '#bfc7d5',
|
|
|
|
green = '#C3E88D',
|
|
|
|
purple = '#c792ea',
|
|
|
|
yellow = '#ffcb6b',
|
|
|
|
light_red = '#ff869a',
|
|
|
|
red = '#ff5370',
|
|
|
|
dark_yellow = '#F78C6C',
|
|
|
|
cyan = '#89DDFF',
|
|
|
|
comment_grey = '#697098',
|
|
|
|
black = '#292D3E',
|
2021-02-28 03:16:57 +00:00
|
|
|
}
|
2021-03-15 23:37:46 +00:00
|
|
|
-- LuaFormatter on
|
2021-02-28 03:16:57 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
normal = {
|
2021-04-25 22:24:29 +00:00
|
|
|
a = {fg = colors.black, bg = colors.purple, gui = 'bold'},
|
2021-03-15 23:37:46 +00:00
|
|
|
b = {fg = colors.purple, bg = colors.menu_grey},
|
|
|
|
c = {fg = colors.comment_grey, bg = colors.black}
|
2021-02-28 03:16:57 +00:00
|
|
|
},
|
|
|
|
insert = {
|
2021-04-25 22:24:29 +00:00
|
|
|
a = {fg = colors.black, bg = colors.blue, gui = 'bold'},
|
2021-03-15 23:37:46 +00:00
|
|
|
b = {fg = colors.blue, bg = colors.menu_grey}
|
2021-02-28 03:16:57 +00:00
|
|
|
},
|
|
|
|
visual = {
|
2021-04-25 22:24:29 +00:00
|
|
|
a = {fg = colors.black, bg = colors.cyan, gui = 'bold'},
|
2021-03-15 23:37:46 +00:00
|
|
|
b = {fg = colors.cyan, bg = colors.menu_grey}
|
2021-02-28 03:16:57 +00:00
|
|
|
},
|
|
|
|
replace = {
|
2021-04-25 22:24:29 +00:00
|
|
|
a = {fg = colors.black, bg = colors.green, gui = 'bold'},
|
2021-03-15 23:37:46 +00:00
|
|
|
b = {fg = colors.green, bg = colors.menu_grey}
|
2021-02-28 03:16:57 +00:00
|
|
|
},
|
|
|
|
inactive = {
|
2021-04-25 22:24:29 +00:00
|
|
|
a = {fg = colors.black, bg = colors.menu_grey, gui = 'bold'},
|
2021-03-15 23:37:46 +00:00
|
|
|
b = {fg = colors.black, bg = colors.menu_grey},
|
|
|
|
c = {fg = colors.black, bg = colors.menu_grey}
|
|
|
|
}
|
2021-02-28 03:16:57 +00:00
|
|
|
}
|