VSCode dark theme with autumn colors and a little bit of frost (inspired by the Coffee Dark Roast theme). You can help by reporting issues here
The easiest way to install is for free from the Visual Studio Code Marketplace
Launch Quick Open,
Type theme
and choose Preferences: Color Theme
, then select Dark Autumn Frost
.
Launch Quick Open
Paste the following command and press Enter
:
ext install dark-autumn-frost
Download the latest .vsix release file from the marketplace and install it from the command line
code --install-extension dark-autumn-frost-*.*.*.vsix
or from within VS Code by launching Quick Open and running the Install from VSIX... command.
Change to your .vscode/extensions
VS Code extensions directory.
Depending on your platform it is located in the following folders:
Clone the Dark Autumn Frost Theme
repository as fimius.dark-autumn-frost
:
git clone https://github.com/fimius23/dark-autumn-frost.git fimius.dark-autumn-frost
The project is structured to have all the colors defined in src/settings.js
and the Theme file themes/theme.json
to be built using the command gulp build
.
Any editing of scopes should happen in src/theme.json
.
- node/npm
- gulp
gulp build
builds the source file into thethemes/
directorygulp clean
removes the source file andthemes/
directorynpm run prepublish
will prepare the source files and put them into the compiledthemes/
directory, to be consumed byNPM
This project uses standard-version to prepare CHANGELOG.md and tag the project.
Run the command:
npm run release
Then verify that your CHANGELOG.md
and your package.json look correct. As long as your git commit messages are
conventional and accurate, you no longer need to specify the semver type - and you get CHANGELOG generation for free!
Run the command:
git push --follow-tags origin master