colors.js
: all of the defined colors for the themetheme.js
: color customization definitions for syntax and the workbenchcompiled/Lasers.json
: the compiled color theme
yarn start
: watchescolors.js
andtheme.js
for changes, and then compiles those changes tothemes/Laser-color-theme.json
yarn build
: compilestheme.js
tothemes/Laser-color-theme.json
To test color changes, run the VSCode debugger with Debug > Start Debugging
, then set the new window's theme to Lasers
. Every time a change is made, reload the debugger to see it.
Please make sure any code you contribute is prettified and linted, using the included settings. The easiest way to do this is to install vscode-eslint
, and ensure you have the following line in your VSCode preferences:
{
"eslint.autoFixOnSave": true,
}