Fixes #79130
productIconThemesworkbench.productIconThemeTest Product Icons example in vscode-colorize-testsglyphMargin.collapedRange, not the chosen representation (chevron-right). However we want to keep chevron-right as these can be accessed in Markdown or labels using `$(chevron-right)Do you have a build task to generate the product icon font .woff? At this moment I have no idea how to easily create a product icon font, even though there's already an example and documentation.
For the sample I used an online tool, https://icomoon.io/app/#/select, but a build task would be great. I created https://github.com/microsoft/vscode-extension-samples/issues/303
@aeschli A quick question: can we customize icons in completion list?

@HaoboGu yes, these icons are prefixed with symbol-, for example you can use the following configuration:
"symbol-string": {
"fontCharacter": "\\EA46"
},
"symbol-module": {
"fontCharacter": "\\EA47"
},
"symbol-namespace": {
"fontCharacter": "\\EA47"
},
"symbol-package": {
"fontCharacter": "\\EA47"
},
"symbol-object": {
"fontCharacter": "\\EA47"
}
You can also reference our product icon documentation for the list of the icons and names. It's worth noting that we don't have full support for product icon theming yet, which is what this issue is tracking.
@PKief Thanks a lot!
Are there any plans to allow setting color data for an icon (i.e. not using color theme definitions, but defining them in the product icon theme)? Furthermore, are there any plans to allow for using .svg directly, instead of referencing a glyph in a fontmap?
A limitation of font formats (with exception to color font formats) is that no color data can be stored. Therefore, an icon like in the example below wouldn't be possible to properly include, right?

It's intentional that glyphs only have a single color. We want the color come from color themes. The color must work well with all other colors in the theme, in particular with the background color(s).
Does the current model allow multiple extensions to make changes to icons? Example:
Are they going to be merged or it is not allowed?
@usernamehw it would work just like File Icon themes, you can only select one.
Any ETA on when this will be ready?
@boaz-codota The finalization of this feature has gotten pushed back due to other priorities.
Is there a particular thing you are waiting for?
+1 one for me, I'd love to be able to change a single icon, as in the above issue #110240

Most helpful comment
You can also reference our product icon documentation for the list of the icons and names. It's worth noting that we don't have full support for product icon theming yet, which is what this issue is tracking.