fix: gruvbox status line colors
This commit is contained in:
parent
9680e81aa3
commit
b505570da8
1 changed files with 18 additions and 19 deletions
|
@ -1,24 +1,23 @@
|
|||
local theme = require('gruvbox.colors')
|
||||
local convert = require('lush.hsl.convert')
|
||||
|
||||
local colors = {
|
||||
white = convert.hsl_to_hex(theme.light0_hard),
|
||||
bg = convert.hsl_to_hex(theme.dark0),
|
||||
bg_highlight = convert.hsl_to_hex(theme.dark1),
|
||||
normal = convert.hsl_to_hex(theme.neutral_yellow),
|
||||
insert = convert.hsl_to_hex(theme.neutral_green),
|
||||
command = convert.hsl_to_hex(theme.neutral_orange),
|
||||
visual = convert.hsl_to_hex(theme.neutral_purple),
|
||||
replace = convert.hsl_to_hex(theme.neutral_red),
|
||||
diffAdd = convert.hsl_to_hex(theme.neutral_green),
|
||||
diffModified = convert.hsl_to_hex(theme.neutral_orange),
|
||||
diffDeleted = convert.hsl_to_hex(theme.neutral_red),
|
||||
trace = convert.hsl_to_hex(theme.neutral_orange),
|
||||
hint = convert.hsl_to_hex(theme.neutral_blue),
|
||||
info = convert.hsl_to_hex(theme.neutral_green),
|
||||
error = convert.hsl_to_hex(theme.neutral_red),
|
||||
warn = convert.hsl_to_hex(theme.neutral_orange),
|
||||
floatBorder = convert.hsl_to_hex(theme.dark3),
|
||||
selection_caret = convert.hsl_to_hex(theme.neutral_blue),
|
||||
white = theme.light0_hard,
|
||||
bg = theme.dark0,
|
||||
bg_highlight = theme.dark1,
|
||||
normal = theme.neutral_yellow,
|
||||
insert = theme.neutral_green,
|
||||
command = theme.neutral_orange,
|
||||
visual = theme.neutral_purple,
|
||||
replace = theme.neutral_red,
|
||||
diffAdd = theme.neutral_green,
|
||||
diffModified = theme.neutral_orange,
|
||||
diffDeleted = theme.neutral_red,
|
||||
trace = theme.neutral_orange,
|
||||
hint = theme.neutral_blue,
|
||||
info = theme.neutral_green,
|
||||
error = theme.neutral_red,
|
||||
warn = theme.neutral_orange,
|
||||
floatBorder = theme.dark3,
|
||||
selection_caret = theme.neutral_blue,
|
||||
}
|
||||
return colors
|
||||
|
|
Loading…
Add table
Reference in a new issue