Skip to content

Commit

Permalink
Fix colors of tokyonight diagnostic undercurls (helix-editor#9724)
Browse files Browse the repository at this point in the history
  • Loading branch information
cfuehrmann authored and mtoohey31 committed Jun 2, 2024
1 parent dcd35c6 commit 08e937a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions runtime/themes/tokyonight.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ variable = { fg = "fg" }
"diff.plus" = { fg = "add" }

error = { fg = "error" }
hint = { fg = "hint" }
info = { fg = "info" }
warning = { fg = "yellow" }
"diagnostic.error" = { underline = { style = "curl" } }
"diagnostic.warning" = { underline = { style = "curl" } }
"diagnostic.info" = { underline = { style = "curl" } }
"diagnostic.hint" = { underline = { style = "curl" } }
info = { fg = "info" }
hint = { fg = "hint" }
"diagnostic.error" = { underline = { style = "curl", color = "error" } }
"diagnostic.warning" = { underline = { style = "curl", color = "yellow"} }
"diagnostic.info" = { underline = { style = "curl", color = "info"} }
"diagnostic.hint" = { underline = { style = "curl", color = "hint" } }

"ui.background" = { bg = "bg", fg = "fg" }
"ui.cursor" = { modifiers = ["reversed"] }
Expand Down Expand Up @@ -114,8 +114,8 @@ change = "#6183bb"
delete = "#914c54"

error = "#db4b4b"
hint = "#1abc9c"
info = "#0db9d7"
hint = "#1abc9c"

fg = "#c0caf5"
fg-dark = "#a9b1d6"
Expand Down

0 comments on commit 08e937a

Please sign in to comment.