2021-09-03 18:20:34 +00:00
|
|
|
-- stylua: ignore
|
2021-05-19 10:57:57 +00:00
|
|
|
local colors = {
|
|
|
|
black = '#3c3836',
|
|
|
|
white = '#f9f5d7',
|
|
|
|
orange = '#af3a03',
|
|
|
|
green = '#427b58',
|
|
|
|
blue = '#076678',
|
|
|
|
gray = '#d5c4a1',
|
|
|
|
darkgray = '#7c6f64',
|
|
|
|
lightgray = '#ebdbb2',
|
|
|
|
inactivegray = '#a89984'
|
|
|
|
}
|
2021-09-03 18:20:34 +00:00
|
|
|
|
2021-05-19 10:57:57 +00:00
|
|
|
return {
|
|
|
|
normal = {
|
2021-09-03 18:28:20 +00:00
|
|
|
a = { bg = colors.darkgray, fg = colors.white, gui = 'bold' },
|
|
|
|
b = { bg = colors.gray, fg = colors.darkgray },
|
|
|
|
c = { bg = colors.lightgray, fg = colors.darkgray },
|
2021-05-19 10:57:57 +00:00
|
|
|
},
|
|
|
|
insert = {
|
2021-09-03 18:28:20 +00:00
|
|
|
a = { bg = colors.blue, fg = colors.white, gui = 'bold' },
|
|
|
|
b = { bg = colors.gray, fg = colors.darkgray },
|
|
|
|
c = { bg = colors.gray, fg = colors.black },
|
2021-05-19 10:57:57 +00:00
|
|
|
},
|
|
|
|
visual = {
|
2021-09-03 18:28:20 +00:00
|
|
|
a = { bg = colors.orange, fg = colors.white, gui = 'bold' },
|
|
|
|
b = { bg = colors.gray, fg = colors.darkgray },
|
|
|
|
c = { bg = colors.darkgray, fg = colors.white },
|
2021-05-19 10:57:57 +00:00
|
|
|
},
|
|
|
|
replace = {
|
2021-09-03 18:28:20 +00:00
|
|
|
a = { bg = colors.green, fg = colors.white, gui = 'bold' },
|
|
|
|
b = { bg = colors.gray, fg = colors.darkgray },
|
|
|
|
c = { bg = colors.gray, fg = colors.black },
|
2021-05-19 10:57:57 +00:00
|
|
|
},
|
|
|
|
command = {
|
2021-09-03 18:28:20 +00:00
|
|
|
a = { bg = colors.darkgray, fg = colors.white, gui = 'bold' },
|
|
|
|
b = { bg = colors.gray, fg = colors.darkgray },
|
|
|
|
c = { bg = colors.lightgray, fg = colors.darkgray },
|
2021-05-19 10:57:57 +00:00
|
|
|
},
|
|
|
|
inactive = {
|
2021-09-03 18:28:20 +00:00
|
|
|
a = { bg = colors.lightgray, fg = colors.inactivegray },
|
|
|
|
b = { bg = colors.lightgray, fg = colors.inactivegray },
|
|
|
|
c = { bg = colors.lightgray, fg = colors.inactivegray },
|
|
|
|
},
|
2021-05-19 10:57:57 +00:00
|
|
|
}
|