Skip to content
| Marketplace
Sign in
Visual Studio Code>Themes>MinCom ThemeNew to Visual Studio Code? Get it now.
MinCom Theme

MinCom Theme

brimell

|
164 installs
| (1) | Free
A minimal theme
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Visual Studio Code Theme. You can help by reporting issues here.

  • Getting started
    • Installation
      • GitHub Repository Clone
  • Activate theme
  • Override theme colors
    • Color Scheme override
  • Recommended settings for a better experience
  • Other resources

Getting started

You can install this awesome theme through the Visual Studio Code Marketplace.

Installation

Launch Quick Open:

  • Linux Ctrl+P
  • macOS ⌘P
  • Windows Ctrl+P

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:

  • Linux Ctrl + Shift + P
  • macOS ⌘ + Shift + P
  • Windows Ctrl + Shift + P

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

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft