chore: Update README

This commit is contained in:
Mattia Astorino 2018-04-25 09:49:50 +02:00
parent 19b4aab91c
commit 25f020cbaf
No known key found for this signature in database
GPG key ID: 7BE552533AB6D4E2

View file

@ -110,7 +110,8 @@ Type `Material Theme` and choose `Material Theme: Settings`, then select `Change
You can override the material 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](https://code.visualstudio.com/docs/getstarted/themes#_customizing-a-color-theme) You can override the material 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](https://code.visualstudio.com/docs/getstarted/themes#_customizing-a-color-theme)
#### Color Scheme override #### Color Scheme override
**Basic:**
**Basic example**
```js ```js
"editor.tokenColorCustomizations": { "editor.tokenColorCustomizations": {
"[Material Theme]": { "[Material Theme]": {
@ -119,26 +120,26 @@ You can override the material theme ui and schemes colors by adding these theme-
}, },
``` ```
**Advanced:** **Advanced example**
```js ```js
"editor.tokenColorCustomizations": { "editor.tokenColorCustomizations": {
"[Material Theme Darker High Contrast]": { "[Material Theme VARIANT]": {
"textMateRules": [ "textMateRules": [
{ {
"scope": [ "scope": [
"punctuation.definition.comment", "punctuation.definition.comment",
"comment.block", "comment.block",
"comment.line", "comment.line",
"comment.block.documentation" "comment.block.documentation"
], ],
"settings": { "settings": {
"foreground": "#FF0000" "foreground": "#FF0000"
}
} }
] }
}, ]
}, },
},
``` ```
#### UI Overrides #### UI Overrides