Add coverage demo theme

This commit is contained in:
Daniel Imms
2017-05-04 09:33:18 -07:00
parent f86bab7045
commit 13fbc8514b
2 changed files with 17 additions and 0 deletions

View File

@@ -89,5 +89,17 @@ const minimalColorSet: IColorSet = {
},
};
const minimalCoverageColorSet: IColorSet = {
base: {
background: '#FF0000',
foreground: '#0000FF',
color1: '#00FF00',
color2: '#00FF00',
color3: '#00FF00',
color4: '#00FF00',
},
};
generateTheme('Generated Theme', sapphireColorSet, path.join(__dirname, 'theme.json'));
generateTheme('Generated Theme (minimal)', minimalColorSet, path.join(__dirname, 'theme-minimal.json'));
generateTheme('Generated Theme (minimal, coverage)', minimalCoverageColorSet, path.join(__dirname, 'theme-minimal-coverage.json'));

View File

@@ -17,6 +17,11 @@
"label": "Generated Theme (Minimal)",
"uiTheme": "vs-dark",
"path": "./theme-minimal.json"
},
{
"label": "Generated Theme (Minimal, coverage)",
"uiTheme": "vs-dark",
"path": "./theme-minimal-coverage.json"
}
]
}