From f08b961c09628ed6a9cd7a19f985b5e0381ebd14 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Wed, 1 Feb 2017 14:21:47 -0800 Subject: [PATCH] Improve highlights --- src/index.ts | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/index.ts b/src/index.ts index b507300..e46b0b2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -81,13 +81,16 @@ const sapphireColorSet: IColorSet = { guide: '#263040', invisibles: '#263040', rangeHighlight: '#263040', - findMatchHighlight: '#4e2e62', - currentFindMatchHighlight: '#864fa9', + // Bright red 50% opacity + findMatchHighlight: '#cb606080', + // Brighter red 50% opacity + currentFindMatchHighlight: '#ff777780', selection: '#153958', - selectionHighlight: sapphireColors.greenDim,//'#3b404c', + // Blue 50% opacity + selectionHighlight: '#2b74b380', // White with ~10% opacity - wordHighlight: '#ffffff18',//sapphireColors.greenDim, - wordHighlightStrong: '#ffffff18',//sapphireColors.greenDim, + wordHighlight: '#ffffff18', + wordHighlightStrong: '#ffffff18', activeLinkForeground: sapphireColors.blue } };