forked from OSchip/llvm-project
29 lines
545 B
Plaintext
29 lines
545 B
Plaintext
{
|
|
// Some comment
|
|
"include": "simpleTheme.jsonc",
|
|
"name": "TestTheme",
|
|
"type": "dark",
|
|
"colors": {
|
|
"dropdown.background": "#fff"
|
|
},
|
|
"tokenColors": [
|
|
{
|
|
"settings": {
|
|
"foreground": "#fff"
|
|
}
|
|
},
|
|
{
|
|
"scope": "a",
|
|
"settings": {
|
|
"foreground": "#fff"
|
|
}
|
|
},
|
|
{
|
|
"scope": ["a", "b"],
|
|
"settings": {
|
|
"foreground": "#000"
|
|
}
|
|
}
|
|
]
|
|
}
|