Skip to content

Commit

Permalink
feat(themes): add jump-label for oneLight theme (helix-editor#10061)
Browse files Browse the repository at this point in the history
  • Loading branch information
erasin authored and Desdaemon committed Apr 3, 2024
1 parent 3b81f78 commit 782dbd7
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions runtime/themes/onelight.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@

"constant" = { fg = "cyan", modifiers = ["bold"] }
"constant.builtin" = { fg = "deep-purple" }
"constant.builtin.boolean" = { fg = "purple" }
"constant.builtin.boolean" = { fg = "purple" , modifiers = ["bold"]}
"constant.character" = { fg = "green" }
"constant.character.escape" = { fg = "brown" }
"constant.numeric" = { fg = "brown" }
"constant.numeric.integer" = { fg = "brown" }
"constant.numeric.float" = { fg = "brown" }
"constant.character.escape" = { fg = "brown" , modifiers = ["bold"]}
"constant.numeric" = { fg = "brown" , modifiers = ["bold"]}
"constant.numeric.integer" = { fg = "brown" , modifiers = ["bold"]}
"constant.numeric.float" = { fg = "brown" , modifiers = ["bold"]}

"string" = { fg = "green" }
"string.regexp" = { fg = "purple" }
Expand Down Expand Up @@ -137,11 +137,12 @@
"ui.virtual" = { fg = "grey-500" }
"ui.virtual.ruler" = { bg = "grey-200" }
"ui.virtual.wrap" = { fg = "grey-500" }
"ui.virtual.whitespace" = { fg = "grey-300" }
"ui.virtual.whitespace" = { fg = "grey-400" }
"ui.virtual.indent-guide" = { fg = "grey-500" }
"ui.virtual.inlay-hint" = { fg = "grey-500" }
"ui.virtual.inlay-hint.parameter" = { fg = "grey-500", modifiers = ["italic"] }
"ui.virtual.inlay-hint.type" = { fg = "grey-500" }
"ui.virtual.jump-label" = { fg = "black", bg = "grey-200", modifiers = ["bold" ] }

"ui.menu" = { fg = "black", bg = "grey-300" }
"ui.menu.selected" = { fg = "white", bg = "light-blue" }
Expand Down

0 comments on commit 782dbd7

Please sign in to comment.