Skip to content

Commit

Permalink
feat: update default color so light theme is valid
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmu committed Mar 26, 2023
1 parent 09a5ac4 commit a44d82b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/getConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function getConfig() {
),
gotoNativeSearchSuffix:
vsConfig.get<string>('gotoNativeSearchSuffix', '>>') || '>>',
peekBorderColor: vsConfig.get<string>('peekBorderColor', 'rgb(255,255,255)'),
peekBorderColor: vsConfig.get<string>('peekBorderColor', 'rgb(150,200,200)'),
peekBorderWidth: vsConfig.get<string>('peekBorderWidth', '2px'),
peekBorderStyle: vsConfig.get<string>('peekBorderStyle', 'solid'),
} as const satisfies { [key in ConfigItems]: any };
Expand Down

0 comments on commit a44d82b

Please sign in to comment.