Skip to content

Commit

Permalink
Merge remote-tracking branch 'pkief/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-labs committed May 11, 2024
2 parents 5b3a7b1 + 7acb299 commit 33f474e
Show file tree
Hide file tree
Showing 19 changed files with 104 additions and 23 deletions.
33 changes: 33 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "vscode-material-icon-theme",

// Use Microsoft's Ubuntu Base image for the dev container
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
// Use NodeJS features in the dev container
"ghcr.io/devcontainers/features/node:1": {}
},

"privileged": true,

"onCreateCommand": {
// Install NPM dependencies in the dev container
"install-node-packages": "npm install"
},

"customizations": {
"vscode": {
"settings": {
// Define suggested settings for the dev container
"resmon.show.battery": false,
"resmon.show.cpufreq": false
},
"extensions": [
// Define suggested extensions to preinstall in the dev container
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"jock.svg"
]
}
}
}
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,10 @@ It's also possible to clone existing file icons and change their colors to creat

This will create two new icons called `rust-mod` and `rust-lib` that are associated with the file names `mod.rs` and `lib.rs` respectively. The `base` property defines the icon that should be cloned (in this case the `rust` icon). The `color` property defines the color of the new icon. The `lightColor` property is optional and defines the color of the icon when Visual Studio Code is running with a light color theme. The `fileNames` property defines the file names that should be associated with the new icon. There's also a `fileExtensions` property, which can be used to associate the new icon with file extensions (`"fileExtensions": ["ext", "ext2"]`).

<img src="https://raw.githubusercontent.com/PKief/vscode-material-icon-theme/main/images/how-tos/cloned-file-icons-example.png" alt="cloned file icons">
<img src="https://raw.githubusercontent.com/lucodear/lucodear-icons/main/images/how-tos/cloned-file-icons-example.png" alt="cloned file icons">

- Although you can use any `#RRGGBB` color for the `color` and `lightColor` properties, if you want to stick with colors from the material palette, you can check the full list of allowed aliases [here](https://github.com/PKief/vscode-material-icon-theme/tree/main/icons/generator/clones/utils/color/materialPalette.ts#L7).
- You can check the full list of available icons to be used as the `base` [here](https://github.com/PKief/vscode-material-icon-theme/blob/main/src/icons/fileIcons.ts).
- Although you can use any `#RRGGBB` color for the `color` and `lightColor` properties, if you want to stick with colors from the material palette, you can check the full list of allowed aliases [here](https://github.com/lucodear/lucodear-icons/blob/main/src/icons/generator/clones/utils/color/materialPalette.ts#L7).
- You can check the full list of available icons to be used as the `base` [here](https://github.com/lucodear/lucodear-icons/blob/main/src/icons/fileIcons.ts).

### Folder associations

Expand Down Expand Up @@ -211,10 +211,10 @@ It's also possible to clone existing folder icons and change their colors to cre

This will create two new icons called `users-admin` and `roles-admin` that are associated with the folder names `users` and `roles` respectively. The `base` property defines the icon that should be cloned (in this case the `admin` folder icon). The `color` property defines the color of the new icon. The `lightColor` property is optional and defines the color of the icon when Visual Studio Code is running with a light color theme. The `folderNames` property defines the folder names that should be associated with the new icon.

<img src="https://raw.githubusercontent.com/PKief/vscode-material-icon-theme/main/images/how-tos/cloned-folder-icons-example.png" alt="cloned folder icons">
<img src="https://raw.githubusercontent.com/lucodear/lucodear-icons/main/images/how-tos/cloned-folder-icons-example.png" alt="cloned folder icons">

- Although you can use any `#RRGGBB` color for the `color` and `lightColor` properties, if you want to stick with colors from the material palette, you can check the full list of allowed aliases [here](https://github.com/PKief/vscode-material-icon-theme/tree/main/icons/generator/clones/utils/color/materialPalette.ts#L7).
- You can check the full list of available icon to be used as the `base` [here](https://github.com/PKief/vscode-material-icon-theme/blob/main/src/icons/folderIcons.ts).
- Although you can use any `#RRGGBB` color for the `color` and `lightColor` properties, if you want to stick with colors from the material palette, you can check the full list of allowed aliases [here](https://github.com/lucodear/lucodear-icons/blob/main/src/icons/generator/clones/utils/color/materialPalette.ts#L4).
- You can check the full list of available icon to be used as the `base` [here](https://github.com/lucodear/lucodear-icons/blob/main/src/icons/folderIcons.ts).

### Language associations

Expand Down
1 change: 0 additions & 1 deletion icons/angular-component.svg

This file was deleted.

1 change: 0 additions & 1 deletion icons/angular-directive.svg

This file was deleted.

1 change: 0 additions & 1 deletion icons/angular-guard.svg

This file was deleted.

1 change: 0 additions & 1 deletion icons/angular-pipe.svg

This file was deleted.

1 change: 0 additions & 1 deletion icons/angular-resolver.svg

This file was deleted.

1 change: 0 additions & 1 deletion icons/angular-service.svg

This file was deleted.

1 change: 0 additions & 1 deletion icons/nest-controller.svg

This file was deleted.

1 change: 0 additions & 1 deletion icons/nest-decorator.svg

This file was deleted.

Loading

0 comments on commit 33f474e

Please sign in to comment.