From 2b7e7c80eb4bdc0c7283f94efd6079992840753b Mon Sep 17 00:00:00 2001 From: Jack Allison Date: Thu, 17 Aug 2023 14:14:59 -0400 Subject: [PATCH] Update Monokai bufferline theming to be distinguish active buffers (#7983) * Update OneDark theme to use light-gray for inlay hints. * fix monokai tab themeing to be more distinguishing --- runtime/themes/monokai.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/runtime/themes/monokai.toml b/runtime/themes/monokai.toml index 913cc49b8..66106d480 100644 --- a/runtime/themes/monokai.toml +++ b/runtime/themes/monokai.toml @@ -78,6 +78,11 @@ "ui.statusline" = { fg = "active_text", bg = "#414339" } "ui.statusline.inactive" = { fg = "active_text", bg = "#75715e" } +"ui.bufferline" = { fg = "grey2", bg = "bg3" } +"ui.bufferline.active" = { fg = "active_text", bg = "selection", modifiers = [ + "bold", +] } + "ui.text" = { fg = "text" } "ui.text.focus" = { fg = "active_text" }