1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-06-01 07:46:05 +02:00

Fix colors of tokyonight diagnostic undercurls (#9724)

This commit is contained in:
Carsten Führmann 2024-02-26 02:53:59 +01:00 committed by GitHub
parent 928bf80d9a
commit a876148585
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"] }
@ -114,8 +114,8 @@ change = "#6183bb"
delete = "#914c54"
error = "#db4b4b"
hint = "#1abc9c"
info = "#0db9d7"
hint = "#1abc9c"
fg = "#c0caf5"
fg-dark = "#a9b1d6"