diff options
author | Mr. E | 2022-07-26 01:17:00 +0000 |
---|---|---|
committer | GitHub | 2022-07-26 01:17:00 +0000 |
commit | d4a5413255670ce30a0d91192ed375be8cd890a6 (patch) | |
tree | 705914445b312c67a13edf35282108c467273618 /runtime | |
parent | b55573dc1d1a15c53e91608b02ba22bf86cb5092 (diff) |
feat(themes): add mode-specific styles to the dracula themes (#3135)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/themes/dracula.toml | 3 | ||||
-rw-r--r-- | runtime/themes/dracula_at_night.toml | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/runtime/themes/dracula.toml b/runtime/themes/dracula.toml index 41312901..e3f5c625 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 31e39aa9..776641a7 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" } |