Major Palette Changes

This commit is contained in:
Eric Xiao 2022-12-07 16:16:04 -08:00
commit 7fbba55cb2
6 changed files with 233 additions and 234 deletions

View file

@ -1,18 +1,18 @@
local p = require('rose-pine.palette')
local p = require("rose-pine.palette")
return {
normal = {
a = {bg = p.surface, fg = p.rose, gui = 'bold'},
a = {bg = p.surface, fg = p.rose, gui = "bold"},
b = {bg = p.surface, fg = p.text},
c = {bg = p.surface, fg = p.subtle, gui = 'italic'}
c = {bg = p.surface, fg = p.subtle, gui = "italic"}
},
insert = {a = {bg = p.surface, fg = p.foam, gui = 'bold'}},
visual = {a = {bg = p.surface, fg = p.iris, gui = 'bold'}},
replace = {a = {bg = p.surface, fg = p.pine, gui = 'bold'}},
command = {a = {bg = p.surface, fg = p.love, gui = 'bold'}},
insert = {a = {bg = p.surface, fg = p.foam, gui = "bold"}},
visual = {a = {bg = p.surface, fg = p.iris, gui = "bold"}},
replace = {a = {bg = p.surface, fg = p.sand, gui = "bold"}},
command = {a = {bg = p.surface, fg = p.love, gui = "bold"}},
inactive = {
a = {bg = p.base, fg = p.subtle, gui = 'bold'},
a = {bg = p.base, fg = p.subtle, gui = "bold"},
b = {bg = p.base, fg = p.subtle},
c = {bg = p.base, fg = p.subtle, gui = 'italic'}
c = {bg = p.base, fg = p.subtle, gui = "italic"}
}
}