mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
Merge pull request #3 from luissimas/add-lualine-theme
Add lualine theme
This commit is contained in:
commit
3f8e02b5e9
1 changed files with 34 additions and 0 deletions
34
lua/lualine/themes/rose-pine.lua
Normal file
34
lua/lualine/themes/rose-pine.lua
Normal file
|
|
@ -0,0 +1,34 @@
|
||||||
|
local colors = require('rose-pine.palette')
|
||||||
|
|
||||||
|
return {
|
||||||
|
normal = {
|
||||||
|
a = { bg = colors.rose, fg = colors.base, gui = 'bold' },
|
||||||
|
b = { bg = colors.overlay, fg = colors.rose },
|
||||||
|
c = { bg = colors.base, fg = colors.text },
|
||||||
|
},
|
||||||
|
insert = {
|
||||||
|
a = { bg = colors.foam, fg = colors.base, gui = 'bold' },
|
||||||
|
b = { bg = colors.overlay, fg = colors.foam },
|
||||||
|
c = { bg = colors.base, fg = colors.text },
|
||||||
|
},
|
||||||
|
visual = {
|
||||||
|
a = { bg = colors.iris, fg = colors.base, gui = 'bold' },
|
||||||
|
b = { bg = colors.overlay, fg = colors.iris },
|
||||||
|
c = { bg = colors.base, fg = colors.text },
|
||||||
|
},
|
||||||
|
replace = {
|
||||||
|
a = { bg = colors.pine, fg = colors.base, gui = 'bold' },
|
||||||
|
b = { bg = colors.overlay, fg = colors.pine },
|
||||||
|
c = { bg = colors.base, fg = colors.text },
|
||||||
|
},
|
||||||
|
command = {
|
||||||
|
a = { bg = colors.love, fg = colors.base, gui = 'bold' },
|
||||||
|
b = { bg = colors.overlay, fg = colors.love },
|
||||||
|
c = { bg = colors.base, fg = colors.text },
|
||||||
|
},
|
||||||
|
inactive = {
|
||||||
|
a = { bg = colors.base, fg = colors.inactive, gui = 'bold' },
|
||||||
|
b = { bg = colors.base, fg = colors.inactive },
|
||||||
|
c = { bg = colors.base, fg = colors.inactive },
|
||||||
|
},
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue