debug: fix faded color contrast in launch.json

fixes #56794
This commit is contained in:
isidor 2018-09-20 10:30:56 +02:00
parent e37401183e
commit b1219d5b9b

View file

@ -12,7 +12,12 @@ import * as path from 'path';
import { SettingsDocument } from './settingsDocumentHelper'; import { SettingsDocument } from './settingsDocumentHelper';
const fadedDecoration = vscode.window.createTextEditorDecorationType({ const fadedDecoration = vscode.window.createTextEditorDecorationType({
color: '#777' light: {
color: '#757575'
},
dark: {
color: '#878787'
}
}); });
let pendingLaunchJsonDecoration: NodeJS.Timer; let pendingLaunchJsonDecoration: NodeJS.Timer;