tweak colors of tokyonight theme to increase contrast in some places
This commit is contained in:
parent
723fe14fd2
commit
a726627e50
|
@ -9,6 +9,16 @@ return {
|
|||
keywords = { italic = false },
|
||||
functions = { bold = true },
|
||||
},
|
||||
on_colors = function(colors)
|
||||
local slightly_darker_bg_color = '#0e0e13'
|
||||
local darker_bg_color = '#060609'
|
||||
colors.bg_dark = darker_bg_color
|
||||
colors.bg_float = darker_bg_color
|
||||
colors.bg_popup = darker_bg_color
|
||||
colors.bg_sidebar = slightly_darker_bg_color
|
||||
colors.bg_statusline = darker_bg_color
|
||||
colors.border = slightly_darker_bg_color
|
||||
end,
|
||||
},
|
||||
init = function()
|
||||
vim.cmd.colorscheme 'tokyonight'
|
||||
|
|
Loading…
Reference in a new issue