diff options
author | Erasin Wang | 2023-03-25 16:41:31 +0000 |
---|---|---|
committer | GitHub | 2023-03-25 16:41:31 +0000 |
commit | 851ac6cdd3c5a865d43968ea81d98b5b7c859728 (patch) | |
tree | 5710789c8e4bafb71d7ae984122b1fbf0847d5dd /runtime/themes | |
parent | 2f64c768dff1e6b3784d88a5604bd2f1b96b2b3e (diff) |
Add theme keys for (un)checked markup list items (#6434)
Diffstat (limited to 'runtime/themes')
-rw-r--r-- | runtime/themes/onelight.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/themes/onelight.toml b/runtime/themes/onelight.toml index a9d7a0d3..e35abdb3 100644 --- a/runtime/themes/onelight.toml +++ b/runtime/themes/onelight.toml @@ -80,9 +80,11 @@ "markup.list" = { fg = "light-blue" } "markup.list.unnumbered" = { fg = "light-blue" } "markup.list.numbered" = { fg = "light-blue" } +"markup.list.checked" = { fg = "green" } +"markup.list.unchecked" = { fg = "blue" } "markup.bold" = { fg = "yellow", modifiers = ["bold"] } "markup.italic" = { fg = "purple", modifiers = ["italic"] } -"markup.strikethrough" = { modifiers = ["crossed_out"] } +"markup.strikethrough" = { fg = "red", modifiers = ["crossed_out"] } "markup.link" = { fg = "light-blue" } "markup.link.url" = { fg = "cyan", modifiers = ["underlined"] } "markup.link.text" = { fg = "light-blue" } |