diff options
author | WindSoilder | 2022-01-21 13:03:01 +0000 |
---|---|---|
committer | GitHub | 2022-01-21 13:03:01 +0000 |
commit | 4563832318066fb927126db32f72479cb8456f2b (patch) | |
tree | 5e2d5733f557bd9f31b93fe7b728133a5994c26d /runtime/themes/monokai_pro_machine.toml | |
parent | 392dfa0841fb106300eedf26f8628e48a32d0ea4 (diff) |
add markup support for monokai pro themes (#1553)
Diffstat (limited to 'runtime/themes/monokai_pro_machine.toml')
-rw-r--r-- | runtime/themes/monokai_pro_machine.toml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/runtime/themes/monokai_pro_machine.toml b/runtime/themes/monokai_pro_machine.toml index 0763a5fb..c5890042 100644 --- a/runtime/themes/monokai_pro_machine.toml +++ b/runtime/themes/monokai_pro_machine.toml @@ -85,6 +85,14 @@ # make diagnostic underlined, to distinguish with selection text. diagnostic = { modifiers = ["underlined"] } +# markup highlight, no need for `markup.raw` and `markup.list`, make them to be default +"markup.heading" = "green" +"markup.bold" = { fg = "orange", modifiers = ["bold"] } +"markup.italic" = { fg = "orange", modifiers = ["italic"] } +"markup.link.url" = { fg = "orange", modifiers = ["underlined"] } +"markup.link.text" = "yellow" +"markup.quote" = "green" + [palette] # primary colors "red" = "#ff6d7e" |