From 68a7a39382d3aa2b118e6311f3fd5000918c8b25 Mon Sep 17 00:00:00 2001 From: Bassim EL BAKKALI EL GAZUANI <124774256+DerDemystifier@users.noreply.github.com> Date: Wed, 15 Feb 2023 15:51:43 +0100 Subject: [PATCH] Set Opacity to MatchHighlight in QuietLight (#174296) As stated in the docs for "editor.findMatchHighlightBackground": "The color must not be opaque so as not to hide underlying decorations." I've simply added a 0.6 opacity to the color so that it doesn't obscure the selection background. --- extensions/theme-quietlight/themes/quietlight-color-theme.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/theme-quietlight/themes/quietlight-color-theme.json b/extensions/theme-quietlight/themes/quietlight-color-theme.json index e53088149f2..9d55f2e362b 100644 --- a/extensions/theme-quietlight/themes/quietlight-color-theme.json +++ b/extensions/theme-quietlight/themes/quietlight-color-theme.json @@ -500,7 +500,7 @@ "inputOption.activeBorder": "#adafb7", "dropdown.background": "#F5F5F5", "editor.findMatchBackground": "#BF9CAC", - "editor.findMatchHighlightBackground": "#edc9d8", + "editor.findMatchHighlightBackground": "#edc9d899", "peekViewEditor.matchHighlightBackground": "#C2DFE3", "peekViewTitle.background": "#F2F8FC", "peekViewEditor.background": "#F2F8FC",