Skip to content

Commit

Permalink
fix: peekView background
Browse files Browse the repository at this point in the history
Closes #1297
  • Loading branch information
equinusocio committed Jun 12, 2024
1 parent 64acc58 commit 22ec38f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
- uses: actions/checkout@v2

- name: Use Node Version 12
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '20.x'

- name: Get npm cache directory
id: npm-cache-dir
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
- uses: actions/cache@v4
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Build extension
run: npm run build

- uses: lannonbr/vsce-action@master
- uses: lannonbr/vsce-action@3.0.0
with:
args: "publish -p $VSCE_TOKEN"
env:
Expand Down
8 changes: 4 additions & 4 deletions scripts/generator/color-set.ts
Original file line number Diff line number Diff line change
Expand Up @@ -485,10 +485,10 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => {
* Peekview window style
*/
'peekView.border': theme.scheme.shadow,
'peekViewEditor.background': `${theme.scheme.foreground}05`,
'peekViewTitle.background': `${theme.scheme.foreground}05`,
'peekViewResult.background': `${theme.scheme.foreground}05`,
'peekViewEditorGutter.background': `${theme.scheme.foreground}05`,
'peekViewEditor.background': `${theme.scheme.inputBackground}`,
'peekViewTitle.background': `${theme.scheme.inputBackground}`,
'peekViewResult.background': `${theme.scheme.inputBackground}`,
'peekViewEditorGutter.background': `${theme.scheme.inputBackground}`,
'peekViewTitleDescription.foreground': `${theme.scheme.foreground}60`,
'peekViewResult.matchHighlightBackground': theme.scheme.selection,
'peekViewEditor.matchHighlightBackground': theme.scheme.selection,
Expand Down

0 comments on commit 22ec38f

Please sign in to comment.