From f520ece741fccc9dcd903f9e23025b769ddd8d74 Mon Sep 17 00:00:00 2001 From: fvrests Date: Sat, 5 Feb 2022 14:38:15 -0600 Subject: [PATCH] add inverse theme --- lua/lualine/themes/rose-pine-inverse.lua | 26 ++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 lua/lualine/themes/rose-pine-inverse.lua diff --git a/lua/lualine/themes/rose-pine-inverse.lua b/lua/lualine/themes/rose-pine-inverse.lua new file mode 100644 index 0000000..1e1ee36 --- /dev/null +++ b/lua/lualine/themes/rose-pine-inverse.lua @@ -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' }, + }, +}