Last active
April 12, 2026 19:07
-
-
Save WeirdBeardDev/094b3ffd335c7b16ed2b337a9b810fcb to your computer and use it in GitHub Desktop.
VS Code Material Icon Theme Unity Folder Customizations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme | |
| "material-icon-theme.folders.customClones": [ | |
| { | |
| "name": "unity-sprites", | |
| "base": "folder-images", | |
| "color": "purple-400", | |
| "folderNames": [ | |
| "Sprites" | |
| ] | |
| }, | |
| { | |
| "name": "unity-so", | |
| "base": "folder-class", | |
| "color": "blue-400", | |
| "folderNames": [ | |
| "ScriptableObjects" | |
| ] | |
| }, | |
| { | |
| "name": "unity-scenes", | |
| "base": "folder-console", | |
| "color": "green-400", | |
| "folderNames": [ | |
| "Scenes" | |
| ] | |
| }, | |
| { | |
| "name": "unity-prefabs", | |
| "base": "folder-container", | |
| "color": "yellow-400", | |
| "folderNames": [ | |
| "Prefabs" | |
| ] | |
| }, | |
| { | |
| "name": "unity-gizmos", | |
| "base": "folder-context", | |
| "color": "red-400", | |
| "folderNames": [ | |
| "Gizmos" | |
| ] | |
| }, | |
| { | |
| "name": "unity-materials", | |
| "base": "folder-theme", | |
| "color": "cyan-400", | |
| "folderNames": [ | |
| "Materials" | |
| ] | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment