Skip to content

Commit

Permalink
Update base16_transparent and dark_high_contrast themes (helix-editor…
Browse files Browse the repository at this point in the history
…#6577)

* Update inlay-hint and wrap for base16_transparent
* Update inlay-hint and wrap for dark_high_contrast
* Tune dark_high_contrast cursor match theming
  • Loading branch information
GreasySlug authored and wes-adams committed Jul 3, 2023
1 parent f6efcb4 commit b375a80
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions runtime/themes/base16_transparent.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
"ui.virtual.ruler" = { bg = "gray" }
"ui.virtual.whitespace" = "gray"
"ui.virtual.indent-guide" = "gray"
"ui.virtual.inlay-hint" = { fg = "white", bg = "gray" }
"ui.virtual.inlay-hint.parameter" = { fg = "white", bg = "gray"}
"ui.virtual.inlay-hint.type" = { fg = "white", bg = "gray"}
"ui.virtual.wrap" = "gray"

"variable" = "light-red"
"constant.numeric" = "yellow"
Expand Down
7 changes: 6 additions & 1 deletion runtime/themes/dark_high_contrast.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@
"ui.text" = "white"
"ui.text.focus" = { modifiers = ["reversed"] } # file picker selected

"ui.virtual" = "gray"
"ui.virtual.whitespace" = "gray"
"ui.virtual.ruler" = { fg = "white", bg = "gray" }
"ui.virtual.indent-guide" = "white"
"ui.virtual.inlay-hint" = { fg = "black", bg = "orange" }
"ui.virtual.inlay-hint.parameter" = { fg = "black", bg = "orange" }
"ui.virtual.inlay-hint.type" = { fg = "black", bg = "orange" }
"ui.virtual.wrap" = "gray"

"ui.statusline" = { fg = "white", bg = "deep_blue" }
"ui.statusline.inactive" = { fg = "gray", bg = "deep_blue" }
Expand All @@ -22,7 +27,7 @@
"ui.cursor" = { fg = "black", bg = "white" }
"ui.cursor.insert" = { fg = "black", bg = "white" }
"ui.cursor.select" = { fg = "black", bg = "white" }
"ui.cursor.match" = { bg = "white", modifiers = ["dim"] }
"ui.cursor.match" = { modifiers = ["reversed"] }
"ui.cursor.primary" = { fg = "black", bg = "white", modifiers = ["slow_blink"] }
"ui.cursor.secondary" = "white"
"ui.cursorline.primary" = { bg = "deep_blue", underline = { color = "orange", style = "double_line" } }
Expand Down

0 comments on commit b375a80

Please sign in to comment.