2021-02-13 00:03:57 +00:00
|
|
|
-- Copyright (c) 2020-2021 shadmansaleh
|
|
|
|
-- MIT license, see LICENSE for more details.
|
|
|
|
-- Credit itchyny, jackno (lightline)
|
2021-09-03 18:20:34 +00:00
|
|
|
-- stylua: ignore
|
2021-01-04 01:14:29 +00:00
|
|
|
local colors = {
|
2021-03-15 23:37:46 +00:00
|
|
|
gray = '#44475a',
|
|
|
|
lightgray = '#5f6a8e',
|
|
|
|
orange = '#ffb86c',
|
|
|
|
purple = '#bd93f9',
|
|
|
|
red = '#ff5555',
|
|
|
|
yellow = '#f1fa8c',
|
|
|
|
green = '#50fa7b',
|
|
|
|
white = '#f8f8f2',
|
|
|
|
black = '#282a36',
|
2021-01-02 17:35:36 +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 = { bg = colors.purple, fg = colors.black, gui = 'bold' },
|
|
|
|
b = { bg = colors.lightgray, fg = colors.white },
|
|
|
|
c = { bg = colors.gray, fg = colors.white },
|
2021-05-14 00:09:34 +00:00
|
|
|
},
|
|
|
|
insert = {
|
2021-09-03 18:28:20 +00:00
|
|
|
a = { bg = colors.green, fg = colors.black, gui = 'bold' },
|
|
|
|
b = { bg = colors.lightgray, fg = colors.white },
|
|
|
|
c = { bg = colors.gray, fg = colors.white },
|
2021-05-14 00:09:34 +00:00
|
|
|
},
|
|
|
|
visual = {
|
2021-09-03 18:28:20 +00:00
|
|
|
a = { bg = colors.yellow, fg = colors.black, gui = 'bold' },
|
|
|
|
b = { bg = colors.lightgray, fg = colors.white },
|
|
|
|
c = { bg = colors.gray, fg = colors.white },
|
2021-05-14 00:09:34 +00:00
|
|
|
},
|
|
|
|
replace = {
|
2021-09-03 18:28:20 +00:00
|
|
|
a = { bg = colors.red, fg = colors.black, gui = 'bold' },
|
|
|
|
b = { bg = colors.lightgray, fg = colors.white },
|
|
|
|
c = { bg = colors.gray, fg = colors.white },
|
2021-05-14 00:09:34 +00:00
|
|
|
},
|
|
|
|
command = {
|
2021-09-03 18:28:20 +00:00
|
|
|
a = { bg = colors.orange, fg = colors.black, gui = 'bold' },
|
|
|
|
b = { bg = colors.lightgray, fg = colors.white },
|
|
|
|
c = { bg = colors.gray, fg = colors.white },
|
2021-05-14 00:09:34 +00:00
|
|
|
},
|
|
|
|
inactive = {
|
2021-09-03 18:28:20 +00:00
|
|
|
a = { bg = colors.gray, fg = colors.white, gui = 'bold' },
|
|
|
|
b = { bg = colors.lightgray, fg = colors.white },
|
|
|
|
c = { bg = colors.gray, fg = colors.white },
|
|
|
|
},
|
2021-01-02 17:35:36 +00:00
|
|
|
}
|