From 45d2cee64ec7bfd0d5995bf97ece33fe82fc8e8e Mon Sep 17 00:00:00 2001 From: Adam Becker Date: Sat, 25 Feb 2023 22:57:32 -0700 Subject: [PATCH 1/2] Fix catppuccin themes --- runtime/themes/catppuccin_mocha.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/runtime/themes/catppuccin_mocha.toml b/runtime/themes/catppuccin_mocha.toml index 2504fec87f63..2e4b5cb6c59f 100644 --- a/runtime/themes/catppuccin_mocha.toml +++ b/runtime/themes/catppuccin_mocha.toml @@ -103,10 +103,10 @@ "ui.menu" = { fg = "overlay2", bg = "surface0" } "ui.menu.selected" = { fg = "text", bg = "surface1", modifiers = ["bold"] } -"diagnostic.error" = { fg = "red", underline = { color = "red", style = "curl" } } -"diagnostic.warning" = { fg = "yellow", underline = { color = "yellow", style = "curl" } } -"diagnostic.info" = { fg = "sky", underline = { color = "sky", style = "curl" } } -"diagnostic.hint" = { fg = "teal", underline = { color = "teal", style = "curl" } } +"diagnostic.error".underline = { color = "red", style = "curl" } +"diagnostic.warning".underline = { color = "yellow", style = "curl" } +"diagnostic.info".underline = { color = "sky", style = "curl" } +"diagnostic.hint".underline = { color = "teal", style = "curl" } error = "red" warning = "yellow" From 62b0bc4464e195a6234b762f0d37fcb7d414d331 Mon Sep 17 00:00:00 2001 From: Adam Becker Date: Sun, 26 Feb 2023 14:03:03 -0700 Subject: [PATCH 2/2] Use upstream syntax for the change --- runtime/themes/catppuccin_mocha.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/runtime/themes/catppuccin_mocha.toml b/runtime/themes/catppuccin_mocha.toml index 2e4b5cb6c59f..59fa430f8eb0 100644 --- a/runtime/themes/catppuccin_mocha.toml +++ b/runtime/themes/catppuccin_mocha.toml @@ -103,10 +103,10 @@ "ui.menu" = { fg = "overlay2", bg = "surface0" } "ui.menu.selected" = { fg = "text", bg = "surface1", modifiers = ["bold"] } -"diagnostic.error".underline = { color = "red", style = "curl" } -"diagnostic.warning".underline = { color = "yellow", style = "curl" } -"diagnostic.info".underline = { color = "sky", style = "curl" } -"diagnostic.hint".underline = { color = "teal", style = "curl" } +"diagnostic.error" = { underline = { color = "red", style = "curl" } } +"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } } +"diagnostic.info" = { underline = { color = "sky", style = "curl" } } +"diagnostic.hint" = { underline = { color = "teal", style = "curl" } } error = "red" warning = "yellow"