1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
-- Colorscheme for lualine
local colors = {
bg = "#171717",
fg = "#D0D0D0",
gray = "#373737",
}
return {
normal = {
a = { fg = colors.fg, bg = colors.bg, gui = "bold" },
b = { fg = colors.fg, bg = colors.bg },
c = { fg = colors.fg, bg = colors.bg },
},
insert = { a = { fg = colors.fg, bg = colors.bg, gui = "bold" } },
visual = { a = { fg = colors.fg, bg = colors.bg, gui = "bold" } },
command = { a = { fg = colors.fg, bg = colors.bg, gui = "bold" } },
replace = { a = { fg = colors.fg, bg = colors.bg, gui = "bold" } },
inactive = {
a = { fg = colors.gray, bg = colors.bg },
b = { fg = colors.gray, bg = colors.bg },
c = { fg = colors.gray, bg = colors.bg },
},
}
|