32 lines
952 B
Lua
32 lines
952 B
Lua
-- Copyright (c) 2020-2021 shadmansaleh
|
|
-- MIT license, see LICENSE for more details.
|
|
-- Credit: challsted(lightline)
|
|
-- stylua: ignore
|
|
local colors = {
|
|
black = '#232526',
|
|
gray = '#808080',
|
|
white = '#f8f8f2',
|
|
cyan = '#66d9ef',
|
|
green = '#a6e22e',
|
|
orange = '#ef5939',
|
|
pink = '#f92672',
|
|
red = '#ff0000',
|
|
yellow = '#e6db74',
|
|
}
|
|
|
|
return {
|
|
normal = {
|
|
a = { fg = colors.black, bg = colors.cyan, gui = 'bold' },
|
|
b = { fg = colors.black, bg = colors.pink },
|
|
c = { fg = colors.orange, bg = colors.black },
|
|
},
|
|
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' } },
|
|
inactive = {
|
|
a = { fg = colors.pink, bg = colors.black, gui = 'bold' },
|
|
b = { fg = colors.white, bg = colors.pink },
|
|
c = { fg = colors.gray, bg = colors.black },
|
|
},
|
|
}
|