Skip to content

Commit

Permalink
Fix ayu theme markup unreadable bg (helix-editor#6538)
Browse files Browse the repository at this point in the history
* Fix ayu theme markup unreadable bg

* Add modifiers for markup
  • Loading branch information
pickfire authored and Schuyler Mortimer committed Jul 10, 2024
1 parent de4e9a8 commit 6196c3a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
5 changes: 4 additions & 1 deletion runtime/themes/ayu_dark.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
"namespace" = "blue"
"markup.heading" = "orange"
"markup.list" = "yellow"
"markup.raw.block" = { bg = "gray", fg = "orange" }
"markup.bold" = { fg = "orange", modifiers = ["bold"] }
"markup.italic" = { fg = "orange", modifiers = ["italic"] }
"markup.strikethrough" = { modifiers = ["crossed_out"] }
"markup.raw.block" = "orange"
"markup.link.url" = "blue"
"markup.link.text" = "yellow"
"markup.link.label" = "green"
Expand Down
7 changes: 5 additions & 2 deletions runtime/themes/ayu_light.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@
"namespace" = "blue"
"markup.heading" = "orange"
"markup.list" = "yellow"
"markup.raw.block" = { bg = "gray", fg = "orange" }
"markup.link.url" = "blue"
"markup.bold" = { fg = "orange", modifiers = ["bold"] }
"markup.italic" = { fg = "orange", modifiers = ["italic"] }
"markup.strikethrough" = { modifiers = ["crossed_out"] }
"markup.raw.block" = "orange"
"markup.link.url" = { fg = "blue", modifiers = ["underlined"] }
"markup.link.text" = "yellow"
"markup.link.label" = "green"
"markup.quote" = "yellow"
Expand Down
5 changes: 4 additions & 1 deletion runtime/themes/ayu_mirage.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
"namespace" = "blue"
"markup.heading" = "orange"
"markup.list" = "yellow"
"markup.raw.block" = { bg = "gray", fg = "orange" }
"markup.bold" = { fg = "orange", modifiers = ["bold"] }
"markup.italic" = { fg = "orange", modifiers = ["italic"] }
"markup.strikethrough" = { modifiers = ["crossed_out"] }
"markup.raw.block" = "orange"
"markup.link.url" = "blue"
"markup.link.text" = "yellow"
"markup.link.label" = "green"
Expand Down

0 comments on commit 6196c3a

Please sign in to comment.