From a726627e50b90606aa3e2e81654fbae4cf363984 Mon Sep 17 00:00:00 2001 From: gered Date: Sun, 5 Jan 2025 13:04:56 -0500 Subject: [PATCH] tweak colors of tokyonight theme to increase contrast in some places --- nvim/lua/plugins/theme.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/nvim/lua/plugins/theme.lua b/nvim/lua/plugins/theme.lua index b50dcc7..f2de6ea 100644 --- a/nvim/lua/plugins/theme.lua +++ b/nvim/lua/plugins/theme.lua @@ -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'