From a44d82b6288e426781cca968b2b9d63902cb07db Mon Sep 17 00:00:00 2001 From: Josh Mu Date: Mon, 27 Mar 2023 08:22:11 +1000 Subject: [PATCH] feat: update default color so light theme is valid --- package.json | 2 +- src/utils/getConfig.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fe43c74..ec7b2a1 100644 --- a/package.json +++ b/package.json @@ -76,7 +76,7 @@ }, "periscope.peekBorderColor": { "type": "string", - "default": "rgb(255,255,255)", + "default": "rgb(150,200,200)", "description": "Change the peek color ('white', '#FFF' '#FFFFFFF', 'rgb(255,255,255)','rgba(255, 255, 255. 0.5) )" }, "periscope.peekBorderWidth": { diff --git a/src/utils/getConfig.ts b/src/utils/getConfig.ts index 7ae064e..be4edff 100644 --- a/src/utils/getConfig.ts +++ b/src/utils/getConfig.ts @@ -31,7 +31,7 @@ export function getConfig() { ), gotoNativeSearchSuffix: vsConfig.get('gotoNativeSearchSuffix', '>>') || '>>', - peekBorderColor: vsConfig.get('peekBorderColor', 'rgb(255,255,255)'), + peekBorderColor: vsConfig.get('peekBorderColor', 'rgb(150,200,200)'), peekBorderWidth: vsConfig.get('peekBorderWidth', '2px'), peekBorderStyle: vsConfig.get('peekBorderStyle', 'solid'), } as const satisfies { [key in ConfigItems]: any };