mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
add inverse theme
This commit is contained in:
parent
1a3d0c279e
commit
f520ece741
1 changed files with 26 additions and 0 deletions
26
lua/lualine/themes/rose-pine-inverse.lua
Normal file
26
lua/lualine/themes/rose-pine-inverse.lua
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
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.pine, 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' },
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue