From a88a2e601d159122550ba0cff0fd4ba0c5be5f93 Mon Sep 17 00:00:00 2001 From: Nate Butler Date: Fri, 4 Nov 2022 18:02:10 -0400 Subject: [PATCH] Swap the color of diagnostic underlines to fix low contrast issue. --- styles/src/styleTree/editor.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles/src/styleTree/editor.ts b/styles/src/styleTree/editor.ts index 82e6dfff90..6bed9a87b0 100644 --- a/styles/src/styleTree/editor.ts +++ b/styles/src/styleTree/editor.ts @@ -36,8 +36,8 @@ export default function editor(colorScheme: ColorScheme) { }), }, message: { - text: text(layer, "sans", styleSet, "inverted", { size: "sm" }), - highlightText: text(layer, "sans", styleSet, "inverted", { + text: text(layer, "sans", styleSet, "default", { size: "sm" }), + highlightText: text(layer, "sans", styleSet, "default", { size: "sm", weight: "bold", }),