From dcf3513096fee0dfe3928d2982ad182739032b9c Mon Sep 17 00:00:00 2001 From: Jack Evoniuk <45554423+Evoniuk@users.noreply.github.com> Date: Sun, 4 Jul 2021 00:36:22 -0700 Subject: [PATCH] Fixing unreadable text The status bar, activity bar, and suggest widget have text that's too dark to read. This change would make the foreground color in the status and activity bars white and editorSuggestWidget.focusHighlightForeground black. --- themes/White-Night-color-theme.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/themes/White-Night-color-theme.json b/themes/White-Night-color-theme.json index ae54667..1885423 100644 --- a/themes/White-Night-color-theme.json +++ b/themes/White-Night-color-theme.json @@ -2,7 +2,7 @@ "colors": { "activityBar.background": "#000", "activityBar.border": "#0000", - "activityBar.foreground": "#2e2e37", + "activityBar.foreground": "#fff", "activityBarBadge.background": "#fff", "activityBarBadge.foreground": "#000", "badge.background": "#fff", @@ -55,6 +55,7 @@ "editorOverviewRuler.wordHighlightStrongForeground": "#7d46fc7f", "editorRuler.foreground": "#0a0b0f", "editorSuggestWidget.foreground": "#fff", + "editorSuggestWidget.focusHighlightForeground": "#000000", "editorWarning.foreground": "#f90", "editorWidget.background": "#0a0b0f", "editorWidget.border": "#1e1d27", @@ -107,7 +108,7 @@ "statusBar.background": "#000", "statusBar.debuggingBackground": "#f90", "statusBar.debuggingForeground": "#000", - "statusBar.foreground": "#2e2e37", + "statusBar.foreground": "#fff", "statusBar.noFolderBackground": "#000", "tab.activeBackground": "#fff", "tab.activeForeground": "#000", @@ -225,4 +226,4 @@ } } ] -} \ No newline at end of file +}