changed colors of statusline and ModeMsg
This commit is contained in:
parent
a3507727ab
commit
36573a8c9c
1 changed files with 3 additions and 3 deletions
|
@ -22,7 +22,7 @@ vim.api.nvim_set_var("gruvbox_material_better_performance", "1")
|
|||
vim.cmd [[colo gruvbox-material]]
|
||||
|
||||
-- color of ModeMessage and bold Font
|
||||
vim.api.nvim_set_hl(0, "ModeMsg", { bold = true, fg = "#8bba7f"})
|
||||
vim.api.nvim_set_hl(0, "ModeMsg", { bold = true, fg = "#d8a657"})
|
||||
|
||||
-- colors of tabline
|
||||
vim.api.nvim_set_hl(0, "TabLine", {bg = "#3c3836", fg = "#89b482"})
|
||||
|
@ -30,8 +30,8 @@ vim.api.nvim_set_hl(0, "TabLineFill", {bg = "#1d2021"})
|
|||
vim.api.nvim_set_hl(0, "TabLineSel", {bold = true, bg = "none", fg = "#d8a657"})
|
||||
|
||||
-- color of statusline
|
||||
vim.api.nvim_set_hl(0, "StatusLine", {bold = true, bg = "#1d2021", fg = "#ea6962"})
|
||||
vim.api.nvim_set_hl(0, "StatusLineNC", {bg = "#1d2021", fg = "#89b482"})
|
||||
vim.api.nvim_set_hl(0, "StatusLine", {bold = false, bg = "#1d2021", fg = "#89b482"})
|
||||
vim.api.nvim_set_hl(0, "StatusLineNC", {bg = "#1d2021", fg = "#5b534d"})
|
||||
|
||||
-- color of vertical split line
|
||||
vim.api.nvim_set_hl(0, "VertSplit", {bg = "none", fg = "#1d2021"})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue