diff options
author | Sebastian Zivota | 2022-01-22 15:32:41 +0000 |
---|---|---|
committer | GitHub | 2022-01-22 15:32:41 +0000 |
commit | 5c1a06d28edf5e559448e5f28867fb1688d151f8 (patch) | |
tree | f78e95010d48260f13982fe5758cad7444ce00a5 /runtime/themes | |
parent | 0b55b21f3069640d37d2fa34bd413986177c0cd7 (diff) |
dracula theme: add markup support (#1554)
Diffstat (limited to 'runtime/themes')
-rw-r--r-- | runtime/themes/dracula.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/runtime/themes/dracula.toml b/runtime/themes/dracula.toml index c830d0e6..1db25d8f 100644 --- a/runtime/themes/dracula.toml +++ b/runtime/themes/dracula.toml @@ -40,6 +40,15 @@ "error" = { fg = "red" } "warning" = { fg = "cyan" } +"markup.heading" = { fg = "purple", modifiers = ["bold"] } +"markup.list" = "cyan" +"markup.bold" = { fg = "orange", modifiers = ["bold"] } +"markup.italic" = { fg = "yellow", modifiers = ["italic"] } +"markup.link.url" = "cyan" +"markup.link.text" = "pink" +"markup.quote" = { fg = "yellow", modifiers = ["italic"] } +"markup.raw" = { fg = "foreground" } + [palette] background = "#282a36" background_dark = "#21222c" |