aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortwo-six2022-12-09 04:11:25 +0000
committerGitHub2022-12-09 04:11:25 +0000
commit37e7dd1df598312727aadb5c74919fd196fecffc (patch)
treecc9795864a7b031f665979d5b1e5eca8a0bf2243
parent16e13b9789359282cb6c2681262f46fb1b70134b (diff)
Update `diagnostic.error` background for acme theme (#5019)
-rw-r--r--runtime/themes/acme.toml8
1 files changed, 5 insertions, 3 deletions
diff --git a/runtime/themes/acme.toml b/runtime/themes/acme.toml
index 696a4a9b..e1785f4a 100644
--- a/runtime/themes/acme.toml
+++ b/runtime/themes/acme.toml
@@ -17,9 +17,9 @@
"ui.menu" = {fg="black", bg="acme_bg"}
"ui.menu.selected" = {bg="selected"}
"ui.window" = {bg="acme_bg"}
-"diagnostic.error" = {bg="white", modifiers=["bold"]}
-"diagnostic.warning" = {bg="white", modifiers=["bold"]}
-"diagnostic.hint" = {bg="white", modifiers=["bold"]}
+"diagnostic.error" = {bg="red", fg="white", modifiers=["bold"]}
+"diagnostic.warning" = {bg="orange", fg="black", modifiers=["bold"]}
+"diagnostic.hint" = {fg="gray", modifiers=["bold"]}
"ui.bufferline" = { fg = "indent", bg = "acme_bar_bg" }
"ui.bufferline.active" = { fg = "black", bg = "acme_bg" }
"diff.plus" = {fg = "green"}
@@ -37,3 +37,5 @@ cursor = "#444444"
red = "#a0342f"
green = "#065905"
indent = "#aaaaaa"
+orange = "#f0ad4e"
+gray = "#777777"