diff options
author | Aleksey Kladov <[email protected]> | 2020-02-26 22:16:57 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-02-27 08:32:00 +0000 |
commit | a8e68ff814801a72ecac6cd918a3e7fbb25d11c0 (patch) | |
tree | 53776d27ab2a8e2dc09a2b6bb425b6a592724d82 /editors/code | |
parent | 9784ab9f394cff5a6c7a9d1e4f09f375a4e0d388 (diff) |
Color constants
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/package.json | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 3fbf3f0bb..ad1101603 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -383,6 +383,9 @@ | |||
383 | "semanticTokenTypes": [ | 383 | "semanticTokenTypes": [ |
384 | { | 384 | { |
385 | "id": "attribute" | 385 | "id": "attribute" |
386 | }, | ||
387 | { | ||
388 | "id": "constant" | ||
386 | } | 389 | } |
387 | ], | 390 | ], |
388 | "semanticTokenModifiers": [ | 391 | "semanticTokenModifiers": [ |
@@ -411,6 +414,12 @@ | |||
411 | "highContrast": { | 414 | "highContrast": { |
412 | "fontStyle": "underline" | 415 | "fontStyle": "underline" |
413 | } | 416 | } |
417 | }, | ||
418 | { | ||
419 | "selector": "constant", | ||
420 | "scope": [ | ||
421 | "entity.name.constant" | ||
422 | ] | ||
414 | } | 423 | } |
415 | ] | 424 | ] |
416 | } | 425 | } |