Merge branch 'main' of https://github.com/rose-pine/neovim into rose-pine-main

This commit is contained in:
Eric 2023-08-24 12:44:43 -07:00
commit 139cd93be7
14 changed files with 827 additions and 683 deletions

View file

@ -1,18 +1,18 @@
local p = require("rose-pine.palette")
return {
normal = {
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"}
},
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"},
b = {bg = p.base, fg = p.subtle},
c = {bg = p.base, fg = p.subtle, gui = "italic"}
}
normal = {
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" },
},
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" },
b = { bg = p.base, fg = p.subtle },
c = { bg = p.base, fg = p.subtle, gui = "italic" },
},
}

View file

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