Skip to content

Commit

Permalink
fix: use opacity instead of background in trace (#3450)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S authored Jul 17, 2024
1 parent 5eb6c4a commit dd2957c
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions packages/client/src/decorators/traceDecorations.mts
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,15 @@ export class SpellingExclusionsDecorator implements Disposable {
private createDecorator() {
this.decorationType?.dispose();
this.decorationType = vscode.window.createTextEditorDecorationType({
light: {
// this color will be used in light color themes
backgroundColor: '#8884',
},
dark: {
// this color will be used in dark color themes
backgroundColor: '#8884',
},
opacity: '0.5',
// light: {
// // this color will be used in light color themes
// backgroundColor: '#8884',
// },
// dark: {
// // this color will be used in dark color themes
// backgroundColor: '#8884',
// },
});
}

Expand Down

0 comments on commit dd2957c

Please sign in to comment.