2021-02-13 01:03:57 +01:00
|
|
|
-- Copyright (c) 2020-2021 shadmansaleh
|
|
|
|
-- MIT license, see LICENSE for more details.
|
2021-02-05 02:04:41 +06:00
|
|
|
-- Credit itchyny, jackno (lightline)
|
2021-09-04 00:20:34 +06:00
|
|
|
-- stylua: ignore
|
2021-02-05 02:04:41 +06:00
|
|
|
local colors = {
|
2021-02-23 02:28:29 +06: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-05 02:04:41 +06:00
|
|
|
}
|
2021-09-04 00:20:34 +06:00
|
|
|
|
2021-05-14 02:09:34 +02:00
|
|
|
return {
|
|
|
|
normal = {
|
2021-09-04 00:28:20 +06: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 02:09:34 +02:00
|
|
|
},
|
2021-09-04 00:28:20 +06: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 02:09:34 +02:00
|
|
|
inactive = {
|
2021-09-04 00:28:20 +06: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-05 02:04:41 +06:00
|
|
|
}
|