2021-02-13 01:03:57 +01:00
|
|
|
-- Copyright (c) 2020-2021 shadmansaleh
|
|
|
|
-- MIT license, see LICENSE for more details.
|
2021-02-05 01:54:36 +06:00
|
|
|
-- Credit: challsted(lightline)
|
2021-09-04 00:20:34 +06:00
|
|
|
-- stylua: ignore
|
2021-02-05 01:54:36 +06:00
|
|
|
local colors = {
|
2021-02-23 02:28:29 +06:00
|
|
|
black = '#232526',
|
|
|
|
gray = '#808080',
|
|
|
|
white = '#f8f8f2',
|
|
|
|
cyan = '#66d9ef',
|
|
|
|
green = '#a6e22e',
|
|
|
|
orange = '#ef5939',
|
|
|
|
pink = '#f92672',
|
|
|
|
red = '#ff0000',
|
|
|
|
yellow = '#e6db74',
|
2021-02-05 01:54:36 +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.black, bg = colors.cyan, gui = 'bold' },
|
|
|
|
b = { fg = colors.black, bg = colors.pink },
|
|
|
|
c = { fg = colors.orange, bg = colors.black },
|
2021-05-14 02:09:34 +02:00
|
|
|
},
|
2021-09-04 00:28:20 +06:00
|
|
|
insert = { a = { fg = colors.black, bg = colors.green, gui = 'bold' } },
|
|
|
|
visual = { a = { fg = colors.black, bg = colors.yellow, gui = 'bold' } },
|
|
|
|
replace = { a = { fg = colors.black, 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.pink, bg = colors.black, gui = 'bold' },
|
|
|
|
b = { fg = colors.white, bg = colors.pink },
|
|
|
|
c = { fg = colors.gray, bg = colors.black },
|
|
|
|
},
|
2021-02-05 01:54:36 +06:00
|
|
|
}
|