2021-02-13 00:03:57 +00:00
|
|
|
-- Copyright (c) 2020-2021 shadmansaleh
|
|
|
|
-- MIT license, see LICENSE for more details.
|
2021-02-04 20:04:41 +00:00
|
|
|
-- Credit itchyny, jackno (lightline)
|
2021-09-03 18:20:34 +00:00
|
|
|
-- stylua: ignore
|
2021-02-04 20:04:41 +00:00
|
|
|
local colors = {
|
2021-02-22 20:28:29 +00:00
|
|
|
black = '#000000',
|
|
|
|
maroon = '#800000',
|
|
|
|
green = '#008000',
|
|
|
|
olive = '#808000',
|
|
|
|
navy = '#000080',
|
|
|
|
purple = '#800080',
|
|
|
|
teal = '#008080',
|
|
|
|
silver = '#c0c0c0',
|
|
|
|
gray = '#808080',
|
|
|
|
red = '#ff0000',
|
|
|
|
lime = '#00ff00',
|
|
|
|
yellow = '#ffff00',
|
|
|
|
blue = '#0000ff',
|
|
|
|
fuchsia = '#ff00ff',
|
|
|
|
aqua = '#00ffff',
|
|
|
|
white = '#ffffff',
|
2021-02-04 20:04:41 +00:00
|
|
|
}
|
2021-09-03 18:20:34 +00:00
|
|
|
|
2021-05-14 00:09:34 +00:00
|
|
|
return {
|
|
|
|
normal = {
|
2021-09-03 18:28:20 +00:00
|
|
|
a = { fg = colors.white, bg = colors.blue, gui = 'bold' },
|
|
|
|
b = { fg = colors.white, bg = colors.gray },
|
|
|
|
c = { fg = colors.silver, bg = colors.black },
|
2021-05-14 00:09:34 +00:00
|
|
|
},
|
2021-09-03 18:28:20 +00:00
|
|
|
insert = { a = { fg = colors.white, bg = colors.green, gui = 'bold' } },
|
|
|
|
visual = { a = { fg = colors.white, bg = colors.purple, gui = 'bold' } },
|
|
|
|
replace = { a = { fg = colors.white, bg = colors.red, gui = 'bold' } },
|
2021-05-14 00:09:34 +00:00
|
|
|
inactive = {
|
2021-09-03 18:28:20 +00:00
|
|
|
a = { fg = colors.silver, bg = colors.gray, gui = 'bold' },
|
|
|
|
b = { fg = colors.gray, bg = colors.black },
|
|
|
|
c = { fg = colors.silver, bg = colors.black },
|
|
|
|
},
|
2021-02-04 20:04:41 +00:00
|
|
|
}
|