2021-02-13 00:03:57 +00:00
|
|
|
-- Copyright (c) 2020-2021 shadmansaleh
|
|
|
|
-- MIT license, see LICENSE for more details.
|
2021-02-05 08:48:05 +00:00
|
|
|
-- Credit: Zoltan Dalmadi(lightline)
|
2021-03-15 23:37:46 +00:00
|
|
|
-- LuaFormatter off
|
2021-01-04 01:14:29 +00:00
|
|
|
local colors = {
|
2021-02-22 20:28:29 +00:00
|
|
|
blue = '#61afef',
|
|
|
|
green = '#98c379',
|
|
|
|
purple = '#c678dd',
|
|
|
|
red1 = '#e06c75',
|
|
|
|
red2 = '#be5046',
|
|
|
|
yellow = '#e5c07b',
|
|
|
|
fg = '#abb2bf',
|
|
|
|
bg = '#282c34',
|
|
|
|
gray1 = '#5c6370',
|
|
|
|
gray2 = '#2c323d',
|
|
|
|
gray3 = '#3e4452',
|
2021-01-02 19:07:08 +00:00
|
|
|
}
|
2021-03-15 23:37:46 +00:00
|
|
|
-- LuaFormatter on
|
2021-05-14 00:09:34 +00:00
|
|
|
return {
|
|
|
|
normal = {
|
|
|
|
a = {fg = colors.bg, bg = colors.green, gui = 'bold'},
|
|
|
|
b = {fg = colors.fg, bg = colors.gray3},
|
|
|
|
c = {fg = colors.fg, bg = colors.gray2}
|
|
|
|
},
|
|
|
|
insert = {a = {fg = colors.bg, bg = colors.blue, gui = 'bold'}},
|
|
|
|
visual = {a = {fg = colors.bg, bg = colors.purple, gui = 'bold'}},
|
|
|
|
replace = {a = {fg = colors.bg, bg = colors.red1, gui = 'bold'}},
|
|
|
|
inactive = {
|
|
|
|
a = {fg = colors.gray1, bg = colors.bg, gui = 'bold'},
|
|
|
|
b = {fg = colors.gray1, bg = colors.bg},
|
|
|
|
c = {fg = colors.gray1, bg = colors.gray2}
|
|
|
|
}
|
2021-01-02 19:07:08 +00:00
|
|
|
}
|