From b6e06c8c0c2aef87bf2ec43054aed4d48c0339e8 Mon Sep 17 00:00:00 2001 From: "Mr. E" <2804556+etienne-k@users.noreply.github.com> Date: Wed, 20 Jul 2022 04:55:08 +0200 Subject: [PATCH] feat(themes): add mode-specific styles to the onedark theme (#3098) --- runtime/themes/onedark.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime/themes/onedark.toml b/runtime/themes/onedark.toml index b4cc6f8b..5508692a 100644 --- a/runtime/themes/onedark.toml +++ b/runtime/themes/onedark.toml @@ -65,6 +65,9 @@ diagnostic = { modifiers = ["underlined"] } "ui.statusline" = { fg = "white", bg = "light-black" } "ui.statusline.inactive" = { fg = "light-gray", bg = "light-black" } +"ui.statusline.normal" = { fg = "light-black", bg = "blue" } +"ui.statusline.insert" = { fg = "light-black", bg = "green" } +"ui.statusline.select" = { fg = "light-black", bg = "purple" } "ui.text" = { fg = "white" } "ui.text.focus" = { fg = "white", bg = "light-black", modifiers = ["bold"] }