From d4a5413255670ce30a0d91192ed375be8cd890a6 Mon Sep 17 00:00:00 2001 From: "Mr. E" <2804556+etienne-k@users.noreply.github.com> Date: Tue, 26 Jul 2022 03:17:00 +0200 Subject: [PATCH] feat(themes): add mode-specific styles to the dracula themes (#3135) --- runtime/themes/dracula.toml | 3 +++ runtime/themes/dracula_at_night.toml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/runtime/themes/dracula.toml b/runtime/themes/dracula.toml index 41312901d..e3f5c625e 100644 --- a/runtime/themes/dracula.toml +++ b/runtime/themes/dracula.toml @@ -34,6 +34,9 @@ "ui.selection.primary" = { bg = "primary_highlight" } "ui.statusline" = { fg = "foreground", bg = "background_dark" } "ui.statusline.inactive" = { fg = "comment", bg = "background_dark" } +"ui.statusline.normal" = { fg = "background_dark", bg = "cyan" } +"ui.statusline.insert" = { fg = "background_dark", bg = "green" } +"ui.statusline.select" = { fg = "background_dark", bg = "purple" } "ui.text" = { fg = "foreground" } "ui.text.focus" = { fg = "cyan" } "ui.window" = { fg = "foreground" } diff --git a/runtime/themes/dracula_at_night.toml b/runtime/themes/dracula_at_night.toml index 31e39aa9f..776641a77 100644 --- a/runtime/themes/dracula_at_night.toml +++ b/runtime/themes/dracula_at_night.toml @@ -34,6 +34,9 @@ "ui.selection.primary" = { fg = "background", bg = "pink" } "ui.statusline" = { fg = "foreground", bg = "background_dark" } "ui.statusline.inactive" = { fg = "comment", bg = "background_dark" } +"ui.statusline.normal" = { fg = "background_dark", bg = "cyan" } +"ui.statusline.insert" = { fg = "background_dark", bg = "green" } +"ui.statusline.select" = { fg = "background_dark", bg = "purple" } "ui.text" = { fg = "foreground" } "ui.text.focus" = { fg = "cyan" } "ui.window" = { fg = "foreground" }