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 };