All Projects → PKief → Vscode Material Icon Theme

PKief / Vscode Material Icon Theme

Licence: mit
Available on the VSCode Marketplace

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Vscode Material Icon Theme

Vue Theme Vscode
+200.000 installs ⬇️ Theme for Visual Studio Code inspired by Vue.js, with support for more popular languages, trying to maintain a perfect harmony of colors.
Stars: ✭ 54 (-93.01%)
Mutual labels:  vscode, vscode-extension, vscode-theme
Vscode Smoothtype
VS Code extension to add cursor transitions while typing, similar to MS Office and the Windows 10 Mail app.
Stars: ✭ 54 (-93.01%)
Mutual labels:  vscode, vscode-extension, vscode-theme
Shades Of Purple Vscode
🦄 Shades of Purple — A professional theme with hand-picked & bold shades of purple to go along with your VSCode. Reviewed by several designers and 75+ theme versions released to keep it updated. One of the top rated best VSCode themes on VS Code Marketplace. Download →
Stars: ✭ 486 (-37.13%)
Mutual labels:  vscode, vscode-extension, vscode-theme
Vscode One Monokai
🎨 Vscode One Monokai theme.
Stars: ✭ 214 (-72.32%)
Mutual labels:  vscode, vscode-extension, vscode-theme
Vscodethemes
Themes for Visual Studio Code
Stars: ✭ 155 (-79.95%)
Mutual labels:  vscode, vscode-extension, vscode-theme
Vscode Winteriscoming
Dark theme with fun and bright foreground colors
Stars: ✭ 105 (-86.42%)
Mutual labels:  vscode, vscode-extension, vscode-theme
Theme Bear
🐻 A VSCode dark theme 🐻
Stars: ✭ 27 (-96.51%)
Mutual labels:  vscode, vscode-extension, vscode-theme
Vscode Solidity Auditor
Solidity language support and visual security auditor for Visual Studio Code
Stars: ✭ 108 (-86.03%)
Mutual labels:  vscode, vscode-extension, vscode-theme
Code Blue
A carefully concocted dark theme made of subtle blues and bright hues that’s easy on the eyes for focused coding.
Stars: ✭ 215 (-72.19%)
Mutual labels:  vscode, vscode-extension, vscode-theme
Awesome Vscode
🎨 A curated list of delightful VS Code packages and resources.
Stars: ✭ 19,659 (+2443.21%)
Mutual labels:  vscode, vscode-extension, vscode-theme
Vscode Terraform
A Visual Studio Code extension for Hashicorp Terraform
Stars: ✭ 672 (-13.07%)
Mutual labels:  vscode, vscode-extension
Chat
Chat with your team while you collaborate over code using VS Live Share
Stars: ✭ 468 (-39.46%)
Mutual labels:  vscode, vscode-extension
Vscode Live Sass Compiler
Compile Sass or Scss file to CSS at realtime with live browser reload feature.
Stars: ✭ 488 (-36.87%)
Mutual labels:  vscode, vscode-extension
Nord Visual Studio Code
An arctic, north-bluish clean and elegant Visual Studio Code theme.
Stars: ✭ 749 (-3.1%)
Mutual labels:  vscode, vscode-theme
Horizon Theme Vscode
🎨 A beautifully warm dual theme for Visual Studio Code
Stars: ✭ 506 (-34.54%)
Mutual labels:  vscode, vscode-theme
Vscode R
R Extension for Visual Studio Code (execution, snippet, lint, R documantation, R Markdown)
Stars: ✭ 445 (-42.43%)
Mutual labels:  vscode, vscode-extension
Evermonkey
Evernote Editing. Redefined. 关于 token 的问题请去 https://github.com/michalyao/evermonkey/issues/94 中查看!
Stars: ✭ 542 (-29.88%)
Mutual labels:  vscode, vscode-extension
Vscode Php Debug
PHP Debug Adapter for Visual Studio Code 🐞⛔
Stars: ✭ 569 (-26.39%)
Mutual labels:  vscode, vscode-extension
Gistpad
VS Code extension for managing and sharing code snippets, notes and interactive samples using GitHub Gists
Stars: ✭ 443 (-42.69%)
Mutual labels:  vscode, vscode-extension
Vscode Angular Snippets
Angular Snippets for VS Code
Stars: ✭ 530 (-31.44%)
Mutual labels:  vscode, vscode-extension


logo

Material Icon Theme

Get the Material Design icons into your VS Code.

Version  Rating  Installs  Downloads


Sponsored by

File icons

file icons

Folder icons

folder icons

Customize folder color

You can change the color of the default folder icon using the command palette:

custom folder colors

or via user settings:

"material-icon-theme.folders.color": "#ef5350",

Folder themes

You can change the design of the folder icons using the command palette:

folder themes

or via user settings:

"material-icon-theme.folders.theme": "specific"

Custom icon opacity

You can set a custom opacity for the icons:

"material-icon-theme.opacity": 0.5

Custom icon saturation

If colors do not make you happy you can change the icons to have less saturation making them look grayish or completely grayscale by setting saturation to 0:

"material-icon-theme.saturation": 0.5

Custom icon associations

You can customize the icon associations directly in the user settings.

File associations

With the *.[extension] pattern you can define custom file icon associations. For example you could define an icon for *.sample and every file that ends with .sample will have the defined icon. However, not all files with the same file extension always have the same icon. For some specific file names there is a special icon. In order to overwrite all the specific file icons as well, two asterisks must be set instead of one, i.e. **.[extension].

If there's no leading * it will be automatically configured as filename and not as file extension.

"material-icon-theme.files.associations": {
    "*.ts": "typescript",
    "**.json": "json",
    "fileName.ts": "angular"
}

Custom SVG icons

It's possible to add custom icons by adding a path to an SVG file which is located relative to the extension's dist folder. For example a custom SVG file called "sample.svg" can be placed in an icons folder next to VS Code's extensions folder:

.vscode
 ┣ extensions
 ┗ icons
   ┗ sample.svg

In the settings.json the icon can be associated to a file name or file extension like this:

"material-icon-theme.files.associations": {
    "fileName.ts": "../../../icons/sample"
}

Note: The custom file name must be configured in the settings without the file ending .svg as shown in the example above.

Folder associations

The following configuration can customize the folder icons. It is also possible to overwrite existing associations and create nice combinations. For example you could change the folder theme to "classic" and define icons only for the folder names you like.

"material-icon-theme.folders.associations": {
    "customFolderName": "src",
    "sample": "dist"
}

Custom SVG folder icons

Similar to the files, it is also possible to reference your own SVG icons for folder icons. Here it's important to provide two SVG files: one for the folder if it's closed and another one for the opened state. These two files - let's call them "folder-sample.svg" and "folder-sample-open.svg" - have to be placed into a directory which is relative to the extensions dist folder. In our example we place them into an icons folder inside of the .vscode folder:

.vscode
 ┣ extensions
 ┗ icons
   ┣ folder-sample.svg
   ┗ folder-sample-open.svg

In the settings.json the folder icons can be associated to a folder name (e.g. "src") like this:

"material-icon-theme.folders.associations": {
    "src": "../../../../../icons/folder-sample"
}

Language associations

With the following configuration you can customize the language icons. It is also possible to overwrite existing associations.

"material-icon-theme.languages.associations": {
    "languageId": "iconName",
    "json": "json"
}

Available language ids:

https://code.visualstudio.com/docs/languages/identifiers#_known-language-identifiers

You can see the available icon names in the overview above.

One-click activation

After installation or update you can click on the 'Activate'-button to activate the icon theme, if you haven't already. The icons will be visible immediately.

activation

Commands

Press Ctrl-Shift-P to open the command palette and type Material Icons.

commands

Command Description
Activate Icon Theme Activate the icon theme.
Change Folder Color Change the color of the folder icons.
Change Folder Theme Change the design of the folder icons.
Change Opacity Change the opacity of the icons.
Change Saturation Change the saturation value of the icons.
Configure Icon Packs Select an icon pack that enables additional icons (e.g. for Angular, React, Ngrx).
Hide Folder Arrows Hides the arrows next to the folder icons.
Restore Default Configuration Reset the default configurations of the icon theme.
Toggle Grayscale Sets the saturation of the icons to zero, so that they are grayscale.

Icon sources

Contributors

Contributors

Would you like to contribute?

Take a look at the contribution guidelines and open a new issue or pull request on GitHub.

Related extensions

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].