feat: gruvbox light theme (#250)
This commit is contained in:
parent
3702e682ac
commit
8b2b825043
@ -53,6 +53,12 @@ lualine try to match your colorscheme.
|
||||

|
||||

|
||||
|
||||
### gruvbox_light
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
### gruvbox_material
|
||||

|
||||

|
||||
|
43
lua/lualine/themes/gruvbox_light.lua
Normal file
43
lua/lualine/themes/gruvbox_light.lua
Normal file
@ -0,0 +1,43 @@
|
||||
local colors = {
|
||||
black = '#3c3836',
|
||||
white = '#f9f5d7',
|
||||
orange = '#af3a03',
|
||||
green = '#427b58',
|
||||
blue = '#076678',
|
||||
gray = '#d5c4a1',
|
||||
darkgray = '#7c6f64',
|
||||
lightgray = '#ebdbb2',
|
||||
inactivegray = '#a89984'
|
||||
}
|
||||
return {
|
||||
normal = {
|
||||
a = {bg = colors.darkgray, fg = colors.white, gui = 'bold'},
|
||||
b = {bg = colors.gray, fg = colors.darkgray},
|
||||
c = {bg = colors.lightgray, fg = colors.darkgray},
|
||||
},
|
||||
insert = {
|
||||
a = {bg = colors.blue, fg = colors.white, gui = 'bold'},
|
||||
b = {bg = colors.gray, fg = colors.darkgray},
|
||||
c = {bg = colors.gray, fg = colors.black},
|
||||
},
|
||||
visual = {
|
||||
a = {bg = colors.orange, fg = colors.white, gui = 'bold'},
|
||||
b = {bg = colors.gray, fg = colors.darkgray},
|
||||
c = {bg = colors.darkgray, fg = colors.white},
|
||||
},
|
||||
replace = {
|
||||
a = {bg = colors.green, fg = colors.white, gui = 'bold'},
|
||||
b = {bg = colors.gray, fg = colors.darkgray},
|
||||
c = {bg = colors.gray, fg = colors.black},
|
||||
},
|
||||
command = {
|
||||
a = {bg = colors.darkgray, fg = colors.white, gui = 'bold'},
|
||||
b = {bg = colors.gray, fg = colors.darkgray},
|
||||
c = {bg = colors.lightgray, fg = colors.darkgray},
|
||||
},
|
||||
inactive = {
|
||||
a = {bg = colors.lightgray, fg = colors.inactivegray},
|
||||
b = {bg = colors.lightgray, fg = colors.inactivegray},
|
||||
c = {bg = colors.lightgray, fg = colors.inactivegray},
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user