Skip to content

Commit

Permalink
fix: actually remove Error Lens' background colours 🤦‍♂️
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrossmann committed Jul 13, 2020
1 parent 9913ea6 commit 72e4d78
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/generators/mkui.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -651,14 +651,14 @@ function mkui({ ui, code }) {
'errorLens.infoForegroundLight': ui.problems.info.hex(),
'errorLens.hintForeground': ui.problems.hint.hex(),
'errorLens.hintForegroundLight': ui.problems.hint.hex(),
// 'errorLens.errorBackground': `${ui.problems.error.hex()}11`,
// 'errorLens.errorBackgroundLight': `${ui.problems.error.hex()}11`,
// 'errorLens.warningBackground': `${ui.problems.warning.hex()}11`,
// 'errorLens.warningBackgroundLight': `${ui.problems.warning.hex()}11`,
// 'errorLens.infoBackground': `${ui.problems.info.hex()}11`,
// 'errorLens.infoBackgroundLight': `${ui.problems.info.hex()}11`,
// 'errorLens.hintBackground': `${ui.problems.hint.hex()}11`,
// 'errorLens.hintBackgroundLight': `${ui.problems.hint.hex()}11`,
'errorLens.errorBackground': '#0000',
'errorLens.errorBackgroundLight': '#0000',
'errorLens.warningBackground': '#0000',
'errorLens.warningBackgroundLight': '#0000',
'errorLens.infoBackground': '#0000',
'errorLens.infoBackgroundLight': '#0000',
'errorLens.hintBackground': '#0000',
'errorLens.hintBackgroundLight': '#0000',
// 'errorLens.errorMessageBackground': '#ff0000',
// 'errorLens.warningMessageBackground': '#ff0000',
// 'errorLens.infoMessageBackground': '#ff0000',
Expand Down

0 comments on commit 72e4d78

Please sign in to comment.