You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
639 B
25 lines
639 B
local solarized_palette = require('solarized.palette')
|
|
local colors = solarized_palette.get_colors()
|
|
|
|
local M = {
|
|
normal = {
|
|
a = { fg = colors.base03, bg = colors.blue, gui = 'bold' },
|
|
b = { fg = colors.base02, bg = colors.base1 },
|
|
c = { fg = colors.base1, bg = colors.base02 },
|
|
z = { fg = colors.base03, bg = colors.blue },
|
|
},
|
|
insert = {
|
|
a = { fg = colors.base03, bg = colors.green },
|
|
},
|
|
visual = {
|
|
a = { fg = colors.base03, bg = colors.magenta },
|
|
},
|
|
replace = {
|
|
a = { fg = colors.base03, bg = colors.red },
|
|
},
|
|
command = {
|
|
a = { fg = colors.base03, bg = colors.orange },
|
|
},
|
|
}
|
|
|
|
return M
|
|
|