Visual Studio Code Theme. You can help by reporting issues here.
Getting started
You can install this awesome theme through the Visual Studio Code Marketplace.
Installation
Launch Quick Open:
Paste the following command and press Enter
:
ext install mincom theme
And pick the one by brimell (me) as author.
GitHub Repository Clone
Change to your .vscode/extensions
VS Code extensions directory.
Depending on your platform it is located in the following folders:
- Linux
~/.vscode/extensions
- macOs
~/.vscode/extensions
- Windows
%USERPROFILE%\.vscode\extensions
Clone the Theme repository as new-theme
:
git clone https://github.com/brimell/mincom-theme.git new-theme
Activate theme
Launch Quick Open:
Type theme
, choose Preferences: Color Theme
, and select one of the Theme variants from the list. After activation, the theme will set the correct icon theme based on your active theme variant.
Override theme colors
You can override the Theme UI and schemes colors by adding these theme-specific settings to your configuration. For advanced customisation please check the relative section on the VS Code documentation.
Color Scheme override
Basic example
"editor.tokenColorCustomizations": {
"[MinCom Theme]": {
"comments": "#229977"
}
},
Advanced example
"editor.tokenColorCustomizations": {
"[MinCom Theme VARIANT]": {
"textMateRules": [
{
"scope": [
"punctuation.definition.comment",
"comment.block",
"comment.line",
"comment.block.documentation"
],
"settings": {
"foreground": "#FF0000"
}
}
]
},
},
"workbench.colorCustomizations": {
"[MinCom Theme VARIANT]": {
"sideBar.background": "#ff0000",
}
},
some settings
{
// Controls the font family.
"editor.fontFamily": "",
// Controls the line height. Use 0 to compute the lineHeight from the fontSize.
"editor.lineHeight": 1234567890,
// Enables font ligatures
"editor.fontLigatures": true,
// Controls if file decorations should use badges.
"explorer.decorations.badges": false
}
Other resources
- AppIcon: Download the official Material Theme app icon for Visual Studio code