2021-02-13 01:03:57 +01:00
|
|
|
-- Copyright (c) 2020-2021 shadmansaleh
|
|
|
|
-- MIT license, see LICENSE for more details.
|
2021-02-05 14:48:05 +06:00
|
|
|
-- Credit: Zoltan Dalmadi(lightline)
|
2021-09-04 00:20:34 +06:00
|
|
|
-- stylua: ignore
|
2021-01-04 02:14:29 +01:00
|
|
|
local colors = {
|
2021-02-23 02:28:29 +06:00
|
|
|
blue = '#61afef',
|
|
|
|
green = '#98c379',
|
|
|
|
purple = '#c678dd',
|
2022-02-12 03:36:36 +09:00
|
|
|
cyan = '#56b6c2',
|
2021-02-23 02:28:29 +06:00
|
|
|
red1 = '#e06c75',
|
|
|
|
red2 = '#be5046',
|
|
|
|
yellow = '#e5c07b',
|
|
|
|
fg = '#abb2bf',
|
|
|
|
bg = '#282c34',
|
2022-01-24 18:36:25 +02:00
|
|
|
gray1 = '#828997',
|
|
|
|
gray2 = '#2c323c',
|
2021-02-23 02:28:29 +06:00
|
|
|
gray3 = '#3e4452',
|
2021-01-02 14:07:08 -05: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.bg, bg = colors.green, gui = 'bold' },
|
|
|
|
b = { fg = colors.fg, bg = colors.gray3 },
|
|
|
|
c = { fg = colors.fg, bg = colors.gray2 },
|
2021-05-14 02:09:34 +02:00
|
|
|
},
|
2022-02-07 23:55:33 +09:00
|
|
|
command = { a = { fg = colors.bg, bg = colors.yellow, gui = 'bold' } },
|
2021-09-04 00:28:20 +06:00
|
|
|
insert = { a = { fg = colors.bg, bg = colors.blue, gui = 'bold' } },
|
|
|
|
visual = { a = { fg = colors.bg, bg = colors.purple, gui = 'bold' } },
|
2022-02-12 03:36:36 +09:00
|
|
|
terminal = { a = { fg = colors.bg, bg = colors.cyan, gui = 'bold' } },
|
2021-09-04 00:28:20 +06:00
|
|
|
replace = { a = { fg = colors.bg, bg = colors.red1, gui = 'bold' } },
|
2021-05-14 02:09:34 +02:00
|
|
|
inactive = {
|
2021-09-04 00:28:20 +06:00
|
|
|
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 14:07:08 -05:00
|
|
|
}
|