https://github.com/fredrikaverpil/vscode-material-theme
Material Theme
https://github.com/fredrikaverpil/vscode-material-theme
material-theme theme vscode vscode-extension
Last synced: about 1 year ago
JSON representation
Material Theme
- Host: GitHub
- URL: https://github.com/fredrikaverpil/vscode-material-theme
- Owner: fredrikaverpil
- License: mit
- Created: 2016-11-24T21:29:23.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-17T12:32:35.000Z (about 9 years ago)
- Last Synced: 2025-04-20T12:58:21.939Z (about 1 year ago)
- Topics: material-theme, theme, vscode, vscode-extension
- Homepage:
- Size: 34.2 KB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Notice: THIS THEME IS NO LONGER MAINTAINED
Since [Mattia Astorino](https://github.com/equinusocio) has released his excellent [Material Theme for Visual Code](https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-material-theme), I am no longer maintaining this theme. Please use his theme instead!
# Material Theme for vscode
[](https://marketplace.visualstudio.com/items?itemName=fredrikaverpil.vscode-material-theme)
[](https://marketplace.visualstudio.com/items?itemName=fredrikaverpil.vscode-material-theme)
[](http://opensource.org/licenses/MIT)
This theme is directly based on the excellent Material Theme by [Mattia Astorino](https://github.com/equinusocio) without any modifications.
## Screenshot

## Resources
* [Github source](https://github.com/fredrikaverpil/vscode-material-theme)
* [Visual Studio Marketplace page](https://marketplace.visualstudio.com/items?itemName=fredrikaverpil.vscode-material-theme)
## Notes on updating the theme
#### Clone this repository
```bash
git clone https://github.com/fredrikaverpil/vscode-material-theme.git
cd vscode-material-theme
```
#### Download the latest version of the theme
```bash
curl -o themes/material-theme.tmTheme https://raw.githubusercontent.com/equinusocio/material-theme/develop/schemes/Material-Theme.tmTheme
```
#### Install and run Yo Code
Offical Yo code docs: [https://code.visualstudio.com/docs/tools/yocode](https://code.visualstudio.com/docs/tools/yocode)
Please note, this step is not needed to follow as the git repo already holds all of the data which Yo Code generates, but it's here for completeness:
```bash
npm install -g yo generator-code
yo code
```
#### Bump version and create update changelog
* Bump the version number in `package.json`
* Add notes on the update in `CHANGELOG.md`
#### Test extension
Official vsce docs: [https://code.visualstudio.com/docs/tools/vscecli](https://code.visualstudio.com/docs/tools/vscecli)
```bash
npm install -g vsce
vsce package # create .vsix
code --install-extension *.vsix # test it
mv *.vsix vsix/ # Move it into "vsix" folder
```
#### Publish to Github and Visual Studio Marketplace
```bash
git commit -am "Updated theme"
git push
```
Notes on setting up a token in the [official vsce docs](https://code.visualstudio.com/docs/tools/vscecli).
```bash
vsce publish
```